-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.build.js
49 lines (49 loc) · 1.72 KB
/
app.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
39
40
41
42
43
44
45
46
47
48
49
( {
appDir : ".",
baseUrl : ".",
paths : {
"js" : "script",
"css" : "css",
"tpl" : "tpl",
"help" : "script/helper",
"lib" : "script/lib",
"engine" : "script/helper/tpl_engine",
"backbone" : "script/lib/backbone/_backbone",
"mustache" : "script/lib/mustache/_mustache",
"modernizr" : "script/lib/modernizr/_modernizr",
"underscore" : "script/lib/underscore/_underscore",
"jquery" : "script/lib/jquery/_jquery",
"jtemplate" : "script/lib/jtemplate/_jtemplate",
"lionbars" : "script/lib/lionbars/_lionbars",
"models" : "script/models",
"views" : "script/views",
"collections" : "script/collections"
},
dir : "./build",
locale : "en-us",
optimize : "uglify",
uglify : {
toplevel : false,
ascii_only : false,
beautify : false
},
optimizeCss : "standard",
cssImportIgnore : null,
inlineText : true,
optimizeAllPluginResources : false,
findNestedDependencies : false,
modules : [{
name : "script/main",
//@off
include:["mustache","jtemplate","modernizr",
"engine","help/text","lib/swfobject",
"lib/json2","lib/jquery-ui",
"views/modules/bottom_button","views/modules/option_box",
"views/modules/vertical_question","views/widget/audio_player_controller",
"views/widget/audio_player_flash","views/widget/audio_player_html5",
"views/widget/epaper"
]
//@on
}],
fileExclusionRegExp : /^\.|css_tpl|unittest|tpl\.js|solution|lab|app\.build\.js|package\.json|\.(exe|bat|coffee|less|styl|markdown|md|txt)$/
})