-
Notifications
You must be signed in to change notification settings - Fork 2
/
dub.json
49 lines (43 loc) · 1.18 KB
/
dub.json
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
{
"name": "reloaded-vibes",
"description": "🔄 Smart auto-reloading service and server for web development",
"copyright": "Copyright © 2019 0xEAB",
"license": "BSL-1.0",
"authors": [
"Elias Batek (0xEAB)"
],
"stringImportPaths": ["views", "."],
"targetPath": "bin",
"preGenerateCommands" : [
"rdmd \"$PACKAGE_DIR/dubhash.d\""
],
"dependencies": {
"vibe-d:core": "~>0.9.4",
"vibe-d:http": "~>0.9.4",
"vibe-d:tls": "~>0.9.4",
"fswatch": "~>0.6.0"
},
"configurations": [
{
"name": "application",
"targetName": "rlv",
"targetType": "executable",
"subConfigurations": {
"vibe-d:tls": "notls"
}
},
{
"name": "unittest",
"targetName": "rlv-unittest",
"excludedSourceFiles": ["source/reloadedvibes/app.d"],
"subConfigurations": {
"vibe-d:tls": "notls"
}
},
{
"name": "library",
"targetType": "library",
"excludedSourceFiles": ["source/reloadedvibes/app.d"]
}
]
}