forked from MaybeJustJames/zephyr
-
Notifications
You must be signed in to change notification settings - Fork 1
/
zephyr.cabal
193 lines (187 loc) · 4.51 KB
/
zephyr.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
cabal-version: 2.0
version: 0.3.2
name: zephyr
synopsis:
Zephyr, tree-shaking for the PureScript language
description:
Tree shaking tool and partial evaluator for PureScript
CoreFn AST.
homepage: https://github.com/coot/zephyr#readme
license: MPL-2.0
license-file: LICENSE
author: Marcin Szamotulski <[email protected]>
maintainer: Marcin Szamotulski <[email protected]>
copyright: (c) 2017-2018 Marcin Szamotulski
build-type: Simple
extra-source-files:
ChangeLog.md
README.md
category: Development
tested-with: ghc
flag test-with-stack
description: use `stack exec zephyr` in tests
manual: False
default: False
flag test-core-libs
description: test core libs
manual: False
default: False
library
hs-source-dirs: src
default-extensions:
ConstraintKinds
DataKinds
DeriveFunctor
EmptyDataDecls
FlexibleContexts
KindSignatures
LambdaCase
MultiParamTypeClasses
NoImplicitPrelude
NamedFieldPuns
OverloadedStrings
PatternGuards
PatternSynonyms
RankNTypes
ScopedTypeVariables
TupleSections
ViewPatterns
ghc-options:
-Wall
-Wcompat
-Widentities
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wpartial-fields
-Wredundant-constraints
-fmax-pmcheck-iterations=4000000
exposed-modules:
Language.PureScript.DCE
, Language.PureScript.DCE.Constants
, Language.PureScript.DCE.CoreFn
, Language.PureScript.DCE.Foreign
, Language.PureScript.DCE.Errors
, Language.PureScript.DCE.Eval
, Language.PureScript.DCE.Utils
build-depends:
aeson >=1.0 && <1.5
, ansi-terminal >=0.7.1 && <0.11
, base >=4.8 && <5
, base-compat >=0.6.0
, boxes ^>=0.1.4
, containers
, formatting
, language-javascript >=0.7.0 && <0.8
, mtl >=2.1.0 && <2.3.0
, purescript ^>=0.13.8
, safe ^>=0.3.9
, text
default-language: Haskell2010
executable zephyr
hs-source-dirs: app
main-is: Main.hs
other-modules:
Command.Run
Command.Options
Paths_zephyr
autogen-modules:
Paths_zephyr
default-extensions:
DataKinds
FlexibleContexts
NamedFieldPuns
OverloadedStrings
ghc-options:
-Wall
-Wcompat
-Widentities
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wpartial-fields
-Wredundant-constraints
-fno-warn-unused-do-bind
-threaded
-rtsopts
-with-rtsopts -N2
build-depends:
aeson
, async
, ansi-terminal
, ansi-wl-pprint
, base
, bytestring
, containers
, directory >=1.2.3
, filepath
, formatting
, Glob >=0.9 && <0.11
, language-javascript
, mtl >=2.1.0 && <2.3.0
, optparse-applicative >=0.13.0
, purescript >=0.13.8
, text
, transformers >=0.3.0 && <0.6
, utf8-string >=1 && <2
, zephyr
default-language: Haskell2010
test-suite zephyr-test
type: exitcode-stdio-1.0
hs-source-dirs: test
default-extensions:
DataKinds
DoAndIfThenElse
FlexibleInstances
NamedFieldPuns
OverloadedStrings
TupleSections
main-is: Main.hs
other-modules:
Test.CoreFn
, Test.Eval
, Test.Generators
, Test.Lib
, Test.CoreLib
, Test.Karma
, Test.Utils
build-depends:
aeson
, base >=4.8 && <5
, base-compat >=0.6.0
, containers
, directory >=1.2.3
, hspec
, hspec-core
, HUnit
, language-javascript
, mtl >=2.1.0 && <2.3.0
, optparse-applicative >=0.13.0
, process
, purescript ^>=0.13.8
, QuickCheck >=2.12.1
, text
, transformers >=0.3.0 && <0.6
, utf8-string >=1 && <2
, zephyr
build-tool-depends:
purescript:purs
if flag(test-with-stack)
cpp-options:
-DTEST_WITH_STACK=1
if flag(test-core-libs)
cpp-options:
-DTEST_CORE_LIBS=1
ghc-options:
-Wall
-Wcompat
-Widentities
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wpartial-fields
-Wredundant-constraints
-threaded
-rtsopts
-with-rtsopts=-N
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/coot/zephyr