Drop autoexporter usage

Problem: `autoexporter` is used in one place to re-export one module.
Probably one day it will re-export more, but at this point it's really
overkill.
Moreover, it causes Hackage build to fail for the reasons mentioned
here:
https://github.com/haskell/hackage-server/issues/821

Solution: stop using it, re-export manually.
This commit is contained in:
Ivan Gromakovskii 2020-05-19 20:57:31 +03:00
parent e4eb7ac2cf
commit c87b37e724
No known key found for this signature in database
GPG Key ID: 2B4D5D5D300D1A13
2 changed files with 6 additions and 5 deletions

View File

@ -50,9 +50,6 @@ default-extensions:
- TypeApplications
- TypeOperators
build-tools:
- autoexporter
ghc-options:
- -Wall
- -Wincomplete-record-updates

View File

@ -1,6 +1,10 @@
{- SPDX-FileCopyrightText: 2018-2019 Serokell <https://serokell.io>
{- SPDX-FileCopyrightText: 2018-2020 Serokell <https://serokell.io>
-
- SPDX-License-Identifier: MPL-2.0
-}
{-# OPTIONS_GHC -F -pgmF autoexporter #-}
module Xrefcheck.Scanners
( module Xrefcheck.Scanners.Markdown
) where
import Xrefcheck.Scanners.Markdown