-
Notifications
You must be signed in to change notification settings - Fork 3
/
intlc.cabal
98 lines (94 loc) · 2.41 KB
/
intlc.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
cabal-version: 2.2
name: intlc
version: 0.8.3
license: MIT
build-type: Simple
common common
default-language: GHC2021
default-extensions:
LambdaCase
NoImplicitPrelude
OverloadedRecordDot
OverloadedStrings
ghc-options:
-Wall
build-depends:
base ^>=4.18
, bytestring ^>=0.11
, comonad ^>=5.0
, containers ^>=0.6
, data-fix ^>=0.3
, deriving-compat ^>=0.6
, extra ^>=1.7
, free ^>=5.1
, mtl ^>=2.3
, recursion-schemes ^>=5.2
, relude ^>=1.2
, text ^>=2.0
, validation ^>=1.1
mixins:
base hiding (Prelude)
, relude (Relude as Prelude)
, relude
executable intlc
import: common
hs-source-dirs: cli/
main-is: Main.hs
build-depends:
intlc
, githash ^>=0.1
, optparse-applicative ^>=0.18
other-modules:
CLI
library
import: common
hs-source-dirs: lib/
build-depends:
parser-combinators ^>=1.2
, megaparsec ^>=9.5
exposed-modules:
Intlc.Compiler
Intlc.Backend.JavaScript.Language
Intlc.Backend.JavaScript.Compiler
Intlc.Backend.JSON.Compiler
Intlc.Backend.ICU.Compiler
Intlc.Backend.TypeScript.Language
Intlc.Backend.TypeScript.Compiler
Intlc.Core
Intlc.Error
Intlc.ICU
Intlc.Linter
Intlc.Parser
Intlc.Parser.Error
Intlc.Parser.JSON
Intlc.Parser.ICU
Intlc.Prettify
Intlc.Printer
Utils
test-suite test-intlc
import: common
default-extensions:
QuasiQuotes
hs-source-dirs: test/
main-is: Spec.hs
type: exitcode-stdio-1.0
build-depends:
intlc
, filepath ^>=1.4
, hspec ^>=2.11
, hspec-golden ^>=0.2
, hspec-megaparsec ^>=2.2
, megaparsec ^>=9.5
, raw-strings-qq ^>=1.1
build-tool-depends:
hspec-discover:hspec-discover
other-modules:
Intlc.Backend.TypeScriptSpec
Intlc.CompilerSpec
Intlc.EndToEndSpec
Intlc.ICUSpec
Intlc.LinterSpec
Intlc.Parser.JSONSpec
Intlc.Parser.ICUSpec
Intlc.PrettifySpec
UtilsSpec