source: Dev/trunk/src/client/util/buildscripts/profiles/amd.profile.js @ 483

Last change on this file since 483 was 483, checked in by hendrikvanantwerpen, 11 years ago

Added Dojo 1.9.3 release.

File size: 2.5 KB
Line 
1var profile = (function(){
2        return {
3                // relative to this file
4                basePath:"../../..",
5
6                // relative to base path
7                releaseDir:"./dojo-amd",
8
9                packages:[{
10                        name:"dojo",
11                        location:"./dojo"
12                },{
13                        name:"dijit",
14                        location:"./dijit"
15                }],
16
17                selectorEngine:"lite",
18
19                defaultConfig:{
20                        hasCache:{
21                                // these are the values given above, not-built client code may test for these so they need to be available
22                                'dojo-built':1,
23                                'dojo-loader':1,
24                                'dom':1,
25                                'host-browser':1,
26
27                                // default
28                                "config-selectorEngine":"lite"
29                        },
30                        async:1
31                },
32
33                dojoBootText:"require.boot && require.apply(null, require.boot);",
34
35                // since this build it intended to be utilized with properly-expressed AMD modules;
36                // don't insert absolute module ids into the modules
37                insertAbsMids:0,
38
39                // these are all the has feature that affect the loader and/or the bootstrap
40                // the settings below are optimized for the smallest AMD loader that is configurable
41                // and include dom-ready support
42                staticHasFeatures:{
43                        // dojo/dojo
44                        'config-dojo-loader-catches':0,
45
46                        // dojo/dojo
47                        'config-tlmSiblingOfDojo':0,
48
49                        // dojo/dojo
50                        'dojo-amd-factory-scan':0,
51
52                        // dojo/dojo
53                        'dojo-combo-api':0,
54
55                        // dojo/_base/config, dojo/dojo
56                        'dojo-config-api':1,
57
58                        // dojo/main
59                        'dojo-config-require':0,
60
61                        // dojo/_base/kernel
62                        'dojo-debug-messages':0,
63
64                        // dojo/dojo
65                        'dojo-dom-ready-api':1,
66
67                        // dojo/main
68                        'dojo-firebug':0,
69
70                        // dojo/_base/kernel
71                        'dojo-guarantee-console':1,
72
73                        // dojo/has
74                        'dojo-has-api':1,
75
76                        // dojo/dojo
77                        'dojo-inject-api':1,
78
79                        // dojo/_base/config, dojo/_base/kernel, dojo/_base/loader, dojo/ready
80                        'dojo-loader':1,
81
82                        // dojo/dojo
83                        'dojo-log-api':0,
84
85                        // dojo/_base/kernel
86                        'dojo-modulePaths':0,
87
88                        // dojo/_base/kernel
89                        'dojo-moduleUrl':0,
90
91                        // dojo/dojo
92                        'dojo-publish-privates':0,
93
94                        // dojo/dojo
95                        'dojo-requirejs-api':0,
96
97                        // dojo/dojo
98                        'dojo-sniff':0,
99
100                        // dojo/dojo, dojo/i18n, dojo/ready
101                        'dojo-sync-loader':0,
102
103                        // dojo/dojo
104                        'dojo-test-sniff':0,
105
106                        // dojo/dojo
107                        'dojo-timeout-api':0,
108
109                        // dojo/dojo
110                        'dojo-trace-api':0,
111
112                        // dojo/dojo
113                        'dojo-undef-api':0,
114
115                        // dojo/i18n
116                        'dojo-v1x-i18n-Api':0,
117
118                        // dojo/_base/xhr
119                        'dojo-xhr-factory':0,
120
121                        // dojo/_base/loader, dojo/dojo, dojo/on
122                        'dom':1,
123
124                        // dojo/dojo
125                        'host-browser':1,
126
127                        // dojo/_base/array, dojo/_base/connect, dojo/_base/kernel, dojo/_base/lang
128                        'extend-dojo':1
129                },
130
131                layers:{
132                        "dojo/dojo":{
133                                include:[],
134                                customBase:1
135                        },
136                        "dojo/main":{
137                                include:["dojo/selector/lite"]
138                        }
139                }
140        };
141})();
Note: See TracBrowser for help on using the repository browser.