source: Dev/branches/rest-dojo-ui/client/rft/rft.profile.js @ 387

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

Reworked project structure based on REST interaction and Dojo library. As
soon as this is stable, the old jQueryUI branch can be removed (it's
kept for reference).

File size: 985 bytes
Line 
1var profile = {
2    basePath: '..',
3    action: 'release',
4    cssOptimize: 'comments',
5    mini: true,
6    optimize: 'closure',
7    layerOptimize: 'closure',
8    stripConsole: 'all',
9    selectorEngine: 'acme',
10    layers: {
11        'dojo/dojo': {
12            include: [ 'dojo/dojo', 'dojo/domReady', 'rft/main' ],
13            boot: true,
14            customBase: true
15        },
16    },
17
18    staticHasFeatures: {
19        'dojo-trace-api':0,
20        'dojo-log-api':0,
21        'dojo-publish-privates':0,
22        'dojo-sync-loader':0,
23        'dojo-test-sniff':0
24    },
25
26    resourceTags: {
27        test: function (filename, mid) {
28            return false;
29        },
30        copyOnly: function (filename, mid) {
31            return false;
32        },
33        amd: function (filename, mid) {
34            return /\.js$/.test(filename);
35        },
36        miniExclude: function (filename, mid) {
37            return mid in {
38                'rft/profile': 1
39            };
40        }
41    }
42};
Note: See TracBrowser for help on using the repository browser.