This repository has been archived by the owner on Apr 18, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
build.json
60 lines (52 loc) · 1.98 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
{
"amd": {
"baseUrl": "./app/js",
"mainConfigFile": "./app/js/amd-config.js",
"include": [
"main",
"pages/*"
]
},
"html": [
{ "cwd": "app", "src": ["*.html"] },
{ "cwd": "app", "src": ["templates/**/*.html"] }
],
"templates": [
{ "cwd": "app", "src": ["templates/**/*.dust"] }
],
"css": [
{ "cwd": "app", "src": ["css/**"] }
],
"js": [
{ "cwd": "app", "src": ["js/**"] }
],
"images": [
{ "cwd": "app", "src": ["images/**"] }
],
"common": [
{ "cwd": ".", "src": ["LICENCE"] },
{ "cwd": "app", "src": ["audio/**"] },
{ "cwd": "app", "src": ["fonts/**"] },
{ "cwd": "app", "src": ["data/**"] },
{ "cwd": "app", "src": ["nls/**"] },
{ "cwd": "app", "src": ["lib/graduate/index.woff"] }
],
"libs-COMMENT": "bower can display a list of files required for installed components, but only if the project has been configured correctly; because the projects used here aren't, we instead have to rely on manually enumerating them; this list is used for the unminified copy only: requirejs automatically traces dependencies for the minified JS.",
"libs": [
{ "cwd": "app", "src": ["lib/requirejs/require.js"] },
{ "cwd": "app", "src": ["lib/lodash/dist/lodash.underscore.js"] },
{ "cwd": "app", "src": ["lib/requirejs-domready/domReady.js"] },
{ "cwd": "app", "src": ["lib/requirejs-text/text.js"] },
{ "cwd": "app", "src": ["lib/requirejs-i18n/i18n.js"] },
{ "cwd": "app", "src": ["lib/q/q.js"] },
{ "cwd": "app", "src": ["lib/stapes/stapes.js"] },
{ "cwd": "app", "src": ["lib/rye/dist/rye-base-0.1.0.js"] },
{ "cwd": "app", "src": ["lib/hammerjs/hammer.js"] },
{ "cwd": "app", "src": ["lib/dustjs-linkedin/dist/dust-core-1.2.2.js"] },
{ "cwd": "app", "src": ["lib/dustjs-linkedin/dist/dust-full-1.2.2.js"] },
{ "cwd": "app", "src": ["lib/fastclick/lib/fastclick.js"] }
],
"wgtRemoteDir": "/home/developer",
"wgtConfig": "platforms/wgt/config.xml",
"serverPort": 30303
}