Skip to content

Commit b04118b

Browse files
authored
Merge pull request #316 from pcapriotti/topic/examples-cabal-fix
Topic/examples cabal fix
2 parents 06ccfc3 + 886bc36 commit b04118b

File tree

1 file changed

+22
-22
lines changed

1 file changed

+22
-22
lines changed

optparse-applicative.cabal

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,6 @@ build-type: Simple
2424
cabal-version: >= 1.8
2525
extra-source-files: CHANGELOG.md
2626
README.md
27-
tests/Examples/Alternatives.hs
28-
tests/Examples/Cabal.hs
29-
tests/Examples/Commands.hs
30-
tests/Examples/Hello.hs
31-
tests/Examples/Formatting.hs
3227
tests/alt.err.txt
3328
tests/cabal.err.txt
3429
tests/carry.err.txt
@@ -57,23 +52,22 @@ library
5752
if impl(ghc >= 8.0)
5853
ghc-options: -Wno-redundant-constraints -Wcompat -Wnoncanonical-monad-instances -Wnoncanonical-monadfail-instances
5954

60-
exposed-modules: Options.Applicative,
61-
Options.Applicative.Arrows,
62-
Options.Applicative.BashCompletion,
63-
Options.Applicative.Builder,
64-
Options.Applicative.Builder.Completer,
65-
Options.Applicative.Builder.Internal,
66-
Options.Applicative.Common,
67-
Options.Applicative.Extra,
68-
Options.Applicative.Help,
69-
Options.Applicative.Help.Chunk,
70-
Options.Applicative.Help.Core,
71-
Options.Applicative.Help.Levenshtein,
72-
Options.Applicative.Help.Pretty,
73-
Options.Applicative.Help.Types,
74-
Options.Applicative.Types,
75-
Options.Applicative.Internal
76-
55+
exposed-modules: Options.Applicative
56+
, Options.Applicative.Arrows
57+
, Options.Applicative.BashCompletion
58+
, Options.Applicative.Builder
59+
, Options.Applicative.Builder.Completer
60+
, Options.Applicative.Builder.Internal
61+
, Options.Applicative.Common
62+
, Options.Applicative.Extra
63+
, Options.Applicative.Help
64+
, Options.Applicative.Help.Chunk
65+
, Options.Applicative.Help.Core
66+
, Options.Applicative.Help.Levenshtein
67+
, Options.Applicative.Help.Pretty
68+
, Options.Applicative.Help.Types
69+
, Options.Applicative.Types
70+
, Options.Applicative.Internal
7771

7872
build-depends: base == 4.*
7973
, transformers >= 0.2 && < 0.6
@@ -95,6 +89,12 @@ test-suite optparse-applicative-tests
9589
hs-source-dirs:
9690
tests
9791

92+
other-modules: Examples.Alternatives
93+
, Examples.Cabal
94+
, Examples.Commands
95+
, Examples.Formatting
96+
, Examples.Hello
97+
9898
build-depends: base
9999
, bytestring == 0.10.*
100100
, optparse-applicative

0 commit comments

Comments
 (0)