forked from jsoverson/JavaScript-Particle-System
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.build.js
More file actions
Latest commit
32 lines (24 loc) · 528 Bytes
/
Copy pathapp.build.js
File metadata and controls
32 lines (24 loc) · 528 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
31
32
({
baseUrl: "js/",
mainConfigFile: 'js/main.js',
out: "js/main.built.js",
include : 'main',
optimize: "uglify",
uglify: {
toplevel: true,
ascii_only: true,
beautify: false,
max_line_length: 1000
},
inlineText: true,
useStrict: false,
skipPragmas: false,
skipModuleInsertion: false,
stubModules: ['text'],
optimizeAllPluginResources: false,
findNestedDependencies: false,
removeCombined: false,
fileExclusionRegExp: /^\./,
preserveLicenseComments: true,
logLevel: 0
})