-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathelm.cabal
449 lines (396 loc) · 9.85 KB
/
elm.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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
Name: elm
Version: 0.19.1
Synopsis:
The `elm` command line interface.
Description:
This includes commands like `elm make`, `elm repl`, and many others
for helping make Elm developers happy and productive.
Homepage: https://elm-lang.org
License: BSD3
License-file: LICENSE
Author: Evan Czaplicki
Maintainer: [email protected]
Copyright: Copyright (c) 2011-present, Evan Czaplicki
Category: Compiler, Language
Cabal-version: >=1.9
Build-type: Simple
source-repository head
type: git
location: git://github.com/elm/compiler.git
Flag dev {
Description: Turn off optimization and make warnings errors
Default: False
}
Executable lamdera
if flag(dev)
ghc-options: -O0 -Wall -Werror
else
-- Make everything an error, ignoring the ones that already sit in core
ghc-options: -O2 -rtsopts -threaded "-with-rtsopts=-N -qg -A128m"
-Werror
-Wno-error=noncanonical-monad-instances
-Wno-error=unused-imports
-Wno-error=unused-matches
-Wno-error=unused-top-binds
-Wno-error=unused-do-bind
-Wno-error=name-shadowing
-- We never use this Haskell feature, so skipping Evan's usages of it
-Wno-error=incomplete-uni-patterns
-- add -eventlog for (elm make src/Main.elm +RTS -l; threadscope elm.eventlog)
-- https://www.oreilly.com/library/view/parallel-and-concurrent/9781449335939/
-- if os(windows)
-- -- https://gitlab.haskell.org/ghc/ghc/-/issues/20878
-- -- https://gitlab.haskell.org/ghc/ghc/-/issues/20010#note_359766
-- extra-libraries: stdc++ supc++ gcc_s gcc_s_seh-1
-- extra-libraries: msys-stdc++-6
-- build-depends: system-cxx-std-lib
Hs-Source-Dirs:
compiler/src
builder/src
terminal/impl
terminal/src
-- Lamdera
extra
test
-- Elmx
ext-common
ext-sentry
ext-elm-pages
Main-Is:
Main.hs
other-modules:
Bump
Develop
Diff
Init
Install
Make
Publish
Repl
-- terminal args
Terminal
Terminal.Chomp
Terminal.Error
Terminal.Helpers
Terminal.Internal
-- from terminal/
Develop.Generate.Help
Develop.Generate.Index
Develop.StaticFiles
Develop.StaticFiles.Build
-- from builder/
Build
BackgroundWriter
Deps.Bump
Deps.Diff
Deps.Registry
Deps.Solver
Deps.Website
File
Generate
Http
Reporting
Reporting.Exit
Reporting.Exit.Help
Reporting.Task
Stuff
-- Elm things
Elm.Outline
Elm.Details
--
Elm.Compiler.Imports
Elm.Compiler.Type
Elm.Compiler.Type.Extract
Elm.Constraint
Elm.Docs
Elm.Float
Elm.Interface
Elm.Kernel
Elm.Licenses
Elm.Magnitude
Elm.ModuleName
Elm.Package
Elm.String
Elm.Version
-- data structures
Data.Bag
Data.Index
Data.Map.Utils
Data.Name
Data.NonEmptyList
Data.OneOrMore
Data.Utf8
-- json
Json.Decode
Json.Encode
Json.String
-- from compiler/
AST.Canonical
AST.Optimized
AST.Source
AST.Utils.Binop
AST.Utils.Shader
AST.Utils.Type
Canonicalize.Effects
Canonicalize.Environment
Canonicalize.Environment.Dups
Canonicalize.Environment.Foreign
Canonicalize.Environment.Local
Canonicalize.Expression
Canonicalize.Module
Canonicalize.Pattern
Canonicalize.Type
Compile
Generate.Html
Generate.JavaScript
Generate.JavaScript.Builder
Generate.JavaScript.Expression
Generate.JavaScript.Functions
Generate.JavaScript.Name
Generate.Mode
Nitpick.Debug
Nitpick.PatternMatches
Optimize.Case
Optimize.DecisionTree
Optimize.Expression
Optimize.Module
Optimize.Names
Optimize.Port
Parse.Declaration
Parse.Expression
Parse.Keyword
Parse.Module
Parse.Number
Parse.Pattern
Parse.Shader
Parse.Space
Parse.String
Parse.Symbol
Parse.Type
Parse.Variable
Parse.Primitives
Reporting.Annotation
Reporting.Doc
Reporting.Error
Reporting.Error.Canonicalize
Reporting.Error.Docs
Reporting.Error.Import
Reporting.Error.Json
Reporting.Error.Main
Reporting.Error.Pattern
Reporting.Error.Syntax
Reporting.Error.Type
Reporting.Render.Code
Reporting.Render.Type
Reporting.Render.Type.Localizer
Reporting.Report
Reporting.Result
Reporting.Suggest
Reporting.Warning
Type.Constrain.Expression
Type.Constrain.Module
Type.Constrain.Pattern
Type.Error
Type.Instantiate
Type.Occurs
Type.Solve
Type.Type
Type.Unify
Type.UnionFind
Paths_elm
-- Lamdera --
Lamdera
Lamdera.CLI
Lamdera.CLI.Live
Lamdera.CLI.Login
Lamdera.CLI.Check
Lamdera.CLI.Deploy
Lamdera.CLI.Reset
Lamdera.CLI.Update
-- CLI Experimental
Lamdera.CLI.Annotate
Lamdera.CLI.Interpreter
Lamdera.AppConfig
Lamdera.Checks
Lamdera.Constrain
Lamdera.Evergreen.MigrationDestructive
Lamdera.Evergreen.MigrationGenerator
Lamdera.Evergreen.MigrationGeneratorHelpers
Lamdera.Evergreen.MigrationGeneratorUnion
Lamdera.Evergreen.MigrationHarness
Lamdera.Evergreen.MigrationSpecialCases
Lamdera.Evergreen.ModifyAST
Lamdera.Evergreen.Snapshot
Lamdera.Extensions
Lamdera.Graph
Lamdera.Hints
Lamdera.Init
Lamdera.Injection
Lamdera.Live
Lamdera.Make
Lamdera.Nitpick.DebugLog
Lamdera.Offline
Lamdera.PostCompile
Lamdera.Project
Lamdera.Relative
Lamdera.Reporting.Evergreen
Lamdera.Reporting.Suggestions
Lamdera.TypeHash
Lamdera.Types
Lamdera.Update
Lamdera.Version
Lamdera.Wire3.Core
Lamdera.Wire3.Decoder
Lamdera.Wire3.Encoder
Lamdera.Wire3.Graph
Lamdera.Wire3.Helpers
Lamdera.Wire3.Interfaces
-- Lamdera Utility --
Lamdera.Compile
Lamdera.Error
Lamdera.Http
Lamdera.Progress
SocketServer
Network.Status
-- Future --
Lamdera.ReverseProxy
Network.HTTP.ReverseProxy
Lamdera.Evaluate
Lamdera.Evaluate.Canonical
Lamdera.Evaluate.Optimized
-- UI Source Map Experiment --
Lamdera.UiSourceMap
-- Lamdera Legacy --
Lamdera.Legacy
-- Wire.Source3
-- Fusion
-- Fusion.Types
-- Fusion.Core
-- Fusion.Bytes
-- Fusion.Encode
-- Fusion.Binary
-- Lamdera.Diff
-- Testing:
EasyTest
Test
Test.Caching
Test.Check
Test.Helpers
Test.Lamdera
Test.Snapshot
Test.TypeHashes
Test.Wire
Test.JsOutput
Test.WebGL
Test.Lamdera.Evergreen.TestMigrationHarness
Test.Lamdera.Evergreen.TestMigrationGenerator
-- Debug helpers --
StandaloneInstances
CanSer.CanSer
Sanity
Wire.PrettyPrint
-- Elmx extensions
-- ext-common
Ext.Common
Ext.ElmFormat
Ext.File
Ext.Query.Canonical
Ext.Query.Interfaces
Ext.Query.Optimized
-- ext-sentry
Ext.Sentry
Ext.Filewatch
-- ext-elm-pages
Ext.ElmPages
Test.Ext.ElmPages.Check
Build-depends:
ansi-terminal,
ansi-wl-pprint < 1,
base,
binary,
bytestring,
containers,
directory,
edit-distance,
file-embed,
filelock,
filepath,
ghc-prim,
haskeline,
HTTP,
http-client,
http-client-tls,
http-types,
language-glsl,
mtl,
network,
-- >= 2.4 && < 2.7,
parsec,
process,
raw-strings-qq,
scientific,
SHA,
snap-core,
snap-server,
template-haskell,
time,
unordered-containers,
utf8-string,
vector,
zip-archive,
-- @LAMDERA
-- Windows metapackage
--system-cxx-std-lib,
-- @TODO need to remove and use Utf8 module instead somehow? Or compat it.
text,
-- Extra
aeson,
neat-interpolation,
natural-sort,
listsafe,
safe,
filemanip,
unix-compat,
githash,
temporary,
-- Live
websockets,
websockets-snap,
stm,
uuid,
broadcast-chan,
timeout,
entropy,
-- Debug
unicode-show,
network-info,
-- Future
conduit-extra,
warp,
wai,
stringsearch,
-- Interpreter
deepseq,
-- Vendor http-reverse-proxy
wai-logger,
unliftio,
streaming-commons,
conduit,
word8,
case-insensitive,
blaze-builder,
-- Test
async,
random,
tree-diff,
main-tester,
-- elmx
clock,
fold-debounce,
formatting,
fsnotify,
command,
lifted-base,
-- elm-format local vendor package
elm-format-lib,
elm-format