-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathbuild.js
More file actions
30 lines (30 loc) · 797 Bytes
/
build.js
File metadata and controls
30 lines (30 loc) · 797 Bytes
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
{
"appDir": "src",
"dir": "build",
"mainConfigFile": "src/common.js",
//"optimize": "uglify2",
"optimize": "none",
//"optimizeCss": "standard",
//"preserveLicenseComments": false,
//"generateSourceMaps": false,
"normalizeDirDefines": "all", //
"skipDirOptimize": false, //speed up non-build bundle
//"skipModuleInsertion": false,
//"stubModules": ["text"],
//"removeCombined": true,
"optimizeAllPluginResources": true,
"modules": [
{
"name": "common",
"include": ["jquery",
"underscore",
"backbone",
"text"
]
},
{
"name": "app/hello/main",
"exclude": ["common"]
}
]
}