-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.json
71 lines (69 loc) · 1.63 KB
/
build.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"cleanup": "dist",
"link": [
{
"source": "index.html",
"destination": "dist/index.html"
},
{
"source": "data",
"destination": "dist/data"
},
{
"source": "src/externals/sm2",
"destination": "dist/sm2"
}
],
"files": {
"dist/glider": {
"src": [
"src/load.js",
"src/compiled.js",
"src/engine/base.js",
"src/engine/math.js",
"src/engine/object.js",
"src/engine/paper_graphics.js",
"src/engine/physics.js",
"src/engine/init.js",
"src/game/main.js",
"src/game/common.js",
"src/game/bullet.js",
"src/game/enemy.js",
"src/game/level.js",
"src/game/ship.js"
],
"prehint": false,
"posthint": false,
"debug": true,
"meta": {
"label": "glider",
"author": "Michael \"Z\" Goddard",
"version": "0.0.0",
"homeurl": "",
"license": [],
"copyright": ""
}
},
"dist/externals": {
"src": [
"src/externals/when/when.js",
"src/externals/gl-matrix/gl-matrix.js",
"src/externals/jquery/dist/jquery.js",
"src/externals/playtomic/playtomic.v1.9.js",
"src/externals/paper/dist/paper.js",
"src/externals/sm2/swf/soundmanager2-nodebug.js"
],
"prehint": false,
"posthint": false,
"debug": false,
"meta": {
"label": "externals",
"author": "Brandon Jones, John Resig, Playtomic, Brian Cavalier",
"version": "0.0.0",
"homeurl": "",
"license": ["MIT"],
"copyright": ""
}
}
}
}