-
Notifications
You must be signed in to change notification settings - Fork 0
/
core.build.js
38 lines (38 loc) · 1.13 KB
/
core.build.js
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
({
optimize: "none",
baseUrl: "./client",
paths: {
"text" : "../text", // plugin for pulling in text! files,
"order" : "../order", // plugin for demanding order
"ace": "empty:", //../support/ace/lib/ace",
"c9/ext" : "empty:",
"debug" : "../support/lib-v8debug/lib/v8debug",
"treehugger" : "../support/treehugger/lib/treehugger",
"apf" : "apf"
},
include: [
"js/apf_release",
"core/ide",
"core/ext",
"core/util",
"core/settings",
"ext/main/main",
"../support/ace/build/src/ace",
"debug/Breakpoint",
"debug/ChromeDebugMessageStream",
"debug/WSChromeDebugMessageStream",
"debug/V8DebuggerService",
"debug/DevToolsService",
"debug/V8Debugger",
"debug/StandaloneV8DebuggerService",
"debug/WSV8DebuggerService",
"treehugger/traverse",
"treehugger/js/parse",
],
out: "./client/build/core.packed.js",
inlineText: true,
findNestedDependencies: true,
optimizeAllPluginResources: false,
useStrict: true,
wrap: true
})