source: Dev/branches/rest-dojo-ui/build/debug.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: 966 bytes
Line 
1var profile = (function(){
2
3    return {
4        basePath: '../client/',
5        action: 'release',
6
7        mini: false,
8        layerOptimize: false,
9        optimize: false,
10        cssOptimize: false,
11        stripConsole: false,
12
13        selectorEngine: 'acme',
14
15        defaultConfig: {
16            async: true,
17            parseOnLoad: false
18        },
19
20        packages: [
21            'dojo',
22            'dijit',
23            'dojox',
24            'rft',
25            'config'
26        ],
27
28        layers: {
29            'dojo/dojo': {
30                include: [ 'dojo/dojo', 'dojo/domReady', 'dojo/_base/declare' ],
31                boot: true,
32                customBase: true
33            },
34            'rft/run' :{
35                include: [ 'rft/run' ]
36            },
37            'config/db' :{
38                include: [ 'config/db' ]
39            }/*,
40            'rft/view' :{
41                include: [ 'rft/view' ]
42            }*/
43        }
44    };
45})();
Note: See TracBrowser for help on using the repository browser.