source: Dev/branches/rest-dojo-ui/build/release.profile.js @ 408

Last change on this file since 408 was 408, checked in by hendrikvanantwerpen, 13 years ago

Added config/ to build. It looks like top-level JS files (like config/db.js and rft/run.js) don't use the cache correctly in a build.

File size: 1.3 KB
Line 
1var profile = (function(){
2
3    return {
4        basePath: '../client/',
5        action: 'release',
6
7        mini: true,
8        layerOptimize: 'closure',
9        optimize: 'closure',
10        cssOptimize: 'comments',
11        stripConsole: 'warn',
12
13        selectorEngine: 'acme',
14
15        defaultConfig: {
16            async: true,
17            parseOnLoad: false
18        },
19
20        staticHasFeatures: {
21            "dojo-loader": 1,
22            "dojo-config-api": 1,
23            "dojo-dom-ready-api": 1,
24            "dojo-has-api": 1,
25            "dojo-inject-api": 1,
26
27            "dojo-trace-api": 0,
28            "dojo-log-api": 0,
29            "dojo-publish-privates": 0,
30
31            "dom": 1,
32            "host-browser": 1
33        },
34
35        packages: [
36            'dojo',
37            'dijit',
38            'dojox',
39            'rft',
40            'config'
41        ],
42
43        layers: {
44            'dojo/dojo': {
45                include: [ 'dojo/dojo', 'dojo/domReady', 'dojo/_base/declare' ],
46                boot: true,
47                customBase: true
48            },
49            'rft/run' :{
50                include: [ 'rft/run' ]
51            },
52            'config/db' :{
53                include: [ 'config/db' ]
54            }/*,
55            'rft/view' :{
56                include: [ 'rft/view' ]
57            }*/
58        }
59    };
60})();
Note: See TracBrowser for help on using the repository browser.