source: Dev/trunk/src/client/client.profile.js @ 529

Last change on this file since 529 was 463, checked in by hendrikvanantwerpen, 12 years ago

Working towards Heroku deployment, restructuring for that and to allow coffee builds.

File size: 938 bytes
Line 
1var profile = (function(){
2    return {
3        basePath: '.',
4        releaseName: 'client',
5        action: 'release',
6
7        layerOptimize: 'closure',
8        optimize: false,
9        cssOptimize: 'comments',
10        stripConsole: 'normal',
11
12        packages: [{
13            name: 'dojo',
14            location: 'dojo'
15        },{
16            name: 'dijit',
17            location: 'dijit'
18        },{
19            name: 'dojox',
20            location: 'dojox'
21        },{
22            name: 'qed-client',
23            location: 'qed-client'
24        }],
25
26        layers: {
27            'dojo/dojo': {
28                include: [ 'dojo/dojo' ],
29                customBase: true,
30                boot: true
31            },
32            'qed-client/index': {
33                include: [ 'qed-client/index' ]
34            },
35            'qed-client/response': {
36                include: [ 'qed-client/response' ]
37            }
38        }
39    };
40})();
Note: See TracBrowser for help on using the repository browser.