-
Notifications
You must be signed in to change notification settings - Fork 1
/
loaderconf.js
46 lines (44 loc) · 1.19 KB
/
loaderconf.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
curl({
baseUrl: 'js',
paths: {
'test': '../test',
'jquery': 'ext/jquery-1.8.2',
'curl/plugin/twig': '../modules/twig/twig',
'curl/plugin/css': '../modules/curl/src/curl/plugin/css',
'curl/plugin/js': '../modules/curl/src/curl/plugin/js',
'curl/plugin/text': '../modules/curl/src/curl/plugin/text',
'bootstrap/css': '../modules/bootstrap/docs/assets/css',
'bootstrap/less': '../modules/bootstrap/less',
'bootstrap/less/variables.less': '../less/variables.less',
'bootstrap/less/type.less': '../less/type.less',
'less': '../modules/less/dist/less-1.3.3.js',
'style': '../less'
},
packages: {
'lodash': {
'location':'../modules/lodash',
'main':'lodash'
},
'blossom': {
'location':'../modules/blossom',
'main':'blossom'
},
'phloem': {
'location':'../modules/phloem',
'main':'phloem'
},
'bud': {
'location':'../modules/bud',
'main':'bud'
},
'foliage' : {
'location':'../modules/foliage',
'main':'foliage'
},
'when' : {
'location': '../modules/when',
'main': 'when'
}
}
});
window.require = curl;