forked from propensive/punctuation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.ire
53 lines (53 loc) · 1.42 KB
/
build.ire
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
{
"imports": ["../gossamer/build.ire", "../honeycomb/build.ire", "../harlequin/build.ire"],
"config": {
"scalac": {
"version": "3.1.2-RC1-bin-SNAPSHOT",
"options": [
"-language:experimental.erasedDefinitions",
"-language:experimental.fewerBraces",
"-language:experimental.saferExceptions",
"-Wunused:all",
"-O", "-deprecation",
"-O", "-feature",
"-O", "-new-syntax",
"-Yrequire-targetName",
"-Ysafe-init",
"-Ycheck-all-patmat",
"-Yno-predef",
"-Yexplicit-nulls"
]
}
},
"modules": [
{
"name": "Punctuation",
"id": "punctuation/core",
"links": ["gossamer/core", "clairvoyant/html"],
"dependencies": [
"com.vladsch.flexmark:flexmark:0.62.2",
"com.vladsch.flexmark:flexmark-ext-tables:0.62.2",
"com.vladsch.flexmark:flexmark-ext-typographic:0.62.2"
],
"sources": ["src/core"],
"version": "0.1.0",
"docs": ["doc"]
},
{
"name": "Punctuation HTML",
"id": "punctuation/html",
"links": ["honeycomb/core", "punctuation/core"],
"sources": ["src/html"],
"version": "0.1.0",
"docs": ["doc"]
},
{
"name": "Punctuation ANSI",
"id": "punctuation/ansi",
"links": ["harlequin/core", "punctuation/core"],
"sources": ["src/ansi"],
"version": "0.1.0",
"docs": ["doc"]
}
]
}