forked from elm/compiler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
elm-compiler.cabal
219 lines (192 loc) · 5.42 KB
/
elm-compiler.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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
Name: elm-compiler
Version: 0.15.1
Synopsis:
Values to help with elm-package, elm-make, and elm-lang.org.
Description:
Elm aims to make client-side web-development pleasant. It is a
statically/strongly typed, functional reactive language that compiles to
HTML, CSS, and JS. This package provides a couple helpful values that are
intended for use in packages such as elm-package and elm-make.
Homepage: http://elm-lang.org
License: BSD3
License-file: LICENSE
Author: Evan Czaplicki
Maintainer: [email protected]
Copyright: Copyright (c) 2011-2014 Evan Czaplicki
Category: Compiler, Language
Extra-source-files: changelog.md
Cabal-version: >=1.9
Build-type: Simple
source-repository head
type: git
location: git://github.com/elm-lang/elm-compiler.git
Library
ghc-options:
-O2 -W
Hs-Source-Dirs:
src
exposed-modules:
Elm.Compiler,
Elm.Compiler.Module,
Elm.Compiler.Type,
Elm.Docs,
Elm.Utils
other-modules:
AST.Declaration,
AST.Expression.Canonical,
AST.Expression.General,
AST.Expression.Optimized,
AST.Expression.Source,
AST.Expression.Valid,
AST.Helpers,
AST.Literal,
AST.Module,
AST.Pattern,
AST.Type,
AST.Variable,
Canonicalize,
Canonicalize.Declaration,
Canonicalize.Environment,
Canonicalize.Port,
Canonicalize.Result,
Canonicalize.Setup,
Canonicalize.Sort,
Canonicalize.Type,
Canonicalize.Variable,
Compile,
Docs.AST,
Docs.Centralize,
Docs.Check,
Elm.Compiler.Imports,
Elm.Compiler.Type.Extract,
Elm.Compiler.Version,
Generate.JavaScript,
Generate.JavaScript.Crash,
Generate.JavaScript.Helpers,
Generate.JavaScript.Port,
Generate.JavaScript.Variable,
Nitpick.Pattern,
Nitpick.PatternMatches,
Nitpick.TopLevelTypes,
Optimize,
Optimize.Cases,
Optimize.Substitute,
Optimize.TailCalls,
Parse.Binop,
Parse.Declaration,
Parse.Expression,
Parse.Helpers,
Parse.Literal,
Parse.Module,
Parse.Parse,
Parse.Pattern,
Parse.Type,
Reporting.Annotation,
Reporting.Crash,
Reporting.Error,
Reporting.Error.Canonicalize,
Reporting.Error.Docs,
Reporting.Error.Helpers,
Reporting.Error.Syntax,
Reporting.Error.Type,
Reporting.PrettyPrint,
Reporting.Region,
Reporting.Report,
Reporting.Result,
Reporting.Warning,
Type.Constrain.Expression,
Type.Constrain.Literal,
Type.Constrain.Pattern,
Type.Environment,
Type.Fragment,
Type.Inference,
Type.PrettyPrint,
Type.Solve,
Type.State,
Type.Type,
Type.Unify,
Validate,
Paths_elm_compiler
Build-depends:
aeson >= 0.7 && < 0.9,
aeson-pretty >= 0.7 && < 0.8,
ansi-terminal >= 0.6.2.1 && < 0.7,
base >=4.2 && <5,
binary >= 0.7.0.0 && < 0.8,
blaze-html >= 0.5 && < 0.9,
blaze-markup >= 0.5.1 && < 0.8,
bytestring >= 0.9 && < 0.11,
cmdargs >= 0.7 && < 0.11,
containers >= 0.3 && < 0.6,
directory >= 1.0 && < 2.0,
edit-distance >= 0.2 && < 0.3,
filepath >= 1 && < 2.0,
indents >= 0.3 && < 0.4,
language-ecmascript >= 0.15 && < 0.18,
language-glsl >= 0.0.2 && < 0.3,
mtl >= 2.2 && < 3,
parsec >= 3.1.1 && < 3.5,
pretty >= 1.0 && < 2.0,
process,
text >= 1 && < 2,
transformers >= 0.2 && < 0.5,
union-find >= 0.2 && < 0.3,
unordered-containers >= 0.1 && < 0.3
Executable elm
ghc-options:
-threaded -O2 -W
Hs-Source-Dirs:
src
Main-is:
CommandLineRouter.hs
other-modules:
Elm.Compiler.Version
Build-depends:
base >=4.2 && <5,
directory >= 1.0 && < 2.0,
process
Test-Suite compiler-tests
Type:
exitcode-stdio-1.0
Hs-Source-Dirs:
tests, src
Main-is:
Test.hs
other-modules:
Test.Compiler
Test.Property
Test.Property.Arbitrary
AST.Helpers
AST.Literal
Reporting.PrettyPrint
build-depends:
test-framework > 0.8 && < 0.9,
test-framework-hunit >= 0.3 && < 0.4,
test-framework-quickcheck2 >= 0.3 && < 0.4,
HUnit >= 1.1 && < 2,
QuickCheck >= 2 && < 3,
aeson >= 0.7 && < 0.9,
aeson-pretty >= 0.7 && < 0.8,
ansi-terminal >= 0.6.2.1 && < 0.7,
base >=4.2 && <5,
binary >= 0.7.0.0 && < 0.8,
blaze-html >= 0.5 && < 0.8,
blaze-markup >= 0.5.1 && < 0.7,
bytestring >= 0.9 && < 0.11,
cmdargs >= 0.7 && < 0.11,
containers >= 0.3 && < 0.6,
directory >= 1.0 && < 2.0,
edit-distance >= 0.2 && < 0.3,
elm-compiler,
filemanip >= 0.3.5 && < 0.4,
filepath >= 1 && < 2.0,
indents >= 0.3 && < 0.4,
language-ecmascript >= 0.15 && < 0.18,
language-glsl >= 0.0.2 && < 0.3,
mtl >= 2.2 && < 3,
parsec >= 3.1.1 && < 3.5,
pretty >= 1.0 && < 2.0,
process,
text >= 1 && < 2,
transformers >= 0.2 && < 0.5,
union-find >= 0.2 && < 0.3