-
Notifications
You must be signed in to change notification settings - Fork 43
/
jrds.profile.js
80 lines (78 loc) · 2.16 KB
/
jrds.profile.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
// cd $DOJOSRC
// WEBAPPDIR=$JRDS_HOME/jrds-webapp/src/main/webapp
// LANG=C $DOJOSRC/util/buildscripts/build.sh --profile $JRDS_HOME/jrds.profile.js --bin java basePath=$PWD
// rsync -av $DOJOSRC/release/jrds/dojo/dojo.js $WEBAPPDIR/dojo/dojo.js
// rsync -av $DOJOSRC/release/jrds/dojo/nls/dojo_en-us.js $WEBAPPDIR/dojo/nls/dojo_en-us.js
// rsync -av --exclude '*.js.uncompressed.js' --delete $DOJOSRC/release/jrds/{dojo,dojox,dijit} /var/jrds/
dependencies = [
"dojo/main",
"dijit/main",
"dojox/main",
"dojo/cookie",
"dojo/number",
"dojo/parser",
"dojo/data/ItemFileReadStore",
"dojo/fx/Toggler",
"dijit/_base",
"dijit/CheckedMenuItem",
"dijit/Dialog",
"dijit/PopupMenuItem",
"dijit/TitlePane",
"dijit/TooltipDialog",
"dijit/Tree",
"dijit/WidgetSet",
"dijit/_base/focus",
"dijit/_base/place",
"dijit/_base/popup",
"dijit/_base/scroll",
"dijit/_base/sniff",
"dijit/_base/typematic",
"dijit/_base/window",
"dijit/main",
"dijit/layout/BorderContainer",
"dijit/layout/ContentPane",
"dijit/layout/LayoutContainer",
"dijit/layout/TabContainer",
"dijit/form/Button",
"dijit/form/ComboButton",
"dijit/form/DateTextBox",
"dijit/form/Form",
"dijit/form/NumberTextBox",
"dijit/form/Select",
"dijit/form/TextBox",
"dijit/form/TimeTextBox",
"dijit/form/ValidationTextBox",
"dojox/widget/Standby",
"dojox/form/FileUploader"
]
var profile = (function(){
return {
releaseDir: "release",
releaseName: "jrds",
action: "release",
//Optimization
layerOptimize: "closure",
optimize: "closure",
cssOptimize: "comments",
mini: true,
stripConsole: "none",
selectorEngine: "lite",
packages:[{
name: "dojo",
location: "dojo"
},{
name: "dijit",
location: "dijit"
},{
name: "dojox",
location: "dojox"
}],
layers: {
"dojo/dojo": {
include: dependencies,
customBase: true,
boot: true
}
}
};
})();