-
Notifications
You must be signed in to change notification settings - Fork 0
/
slug.json
39 lines (37 loc) · 1014 Bytes
/
slug.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
{
"server": {
"port" : 9294
},
"routes": [
{ "" : "./public" },
{ "/test" : "./test/public" }
],
"packages": {
"veggie": {
"libs" : ["lib/runtime.js","lib/cordova.js"],
"modules" : [
"es5-shimify",
"json2ify",
"spine",
"spine/lib/ajax",
"spine/lib/local",
"spine/lib/route",
"spine/lib/manager"
],
"paths" : ["./app"],
"target" : "./public/mobile_assets/application.js",
"jsAfter": "jade.rethrow = function rethrow(err, filename, lineno){ throw err; } ",
"jsAfter": "require('veggie')"
},
"css": {
"paths" : ["./css","./css/lib/animate.css","./css/lib/kontext"],
"target" : "./public/mobile_assets/application.css"
},
"test": {
"identifier" : "specs",
"jsAfter" : "require('lib/setup'); for (var key in specs.modules) specs(key);",
"paths" : ["./test/specs"],
"target" : "./test/public/specs.js"
}
}
}