-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathapp.profile.js
61 lines (56 loc) · 1.02 KB
/
app.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
var profile = (function(){
return {
releaseDir: "../lib",
basePath: "src",
action: "release",
mini: true,
selectorEngine: "lite",
layerOptimize: "closure",
cssOptimize: "comments",
packages: [{
name: "dojo",
location: "dojo"
},{
name: "app",
location: "app"
},{
name: "app-client",
location: "app-client"
}],
defaultConfig: {
hasCache:{
"dojo-built": 1,
"dojo-loader": 1,
"dom": 1,
"host-browser": 1,
"host-node": 0,
"config-selectorEngine": "lite"
},
async: 1
},
staticHasFeatures: {
"config-dojo-loader-catches": 0,
"config-tlmSiblingOfDojo": 0,
"dojo-log-api": 0,
"dojo-sync-loader": 0,
"dojo-timeout-api": 0,
"dojo-sniff": 0,
"dojo-cdn": 0,
"config-strip-strict": 0,
"dojo-loader-eval-hint-url": 1,
"dojo-firebug": 0,
"dojo-debug-messages": 0
},
layers: {
"dojo/dojo": {
include: [ "dojo/dojo" ],
customBase: true,
boot: true
},
"app-client/main": {
include: [],
exclude: []
}
}
};
})();