-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.js
70 lines (67 loc) · 3.07 KB
/
build.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
builder.addModule({
name: 'Mammoth Theme',
type: 'theme',
files: [
__dirname + '/mammoth/theme.css',
__dirname + '/mammoth/theme-icons.css',
__dirname + '/mammoth/theme-icons.svg',
__dirname + '/mammoth/theme-icons.woff',
]
});
builder.addModule({
name: 'Smoothness',
type: 'theme',
files: [
__dirname + '/smoothness/jquery-ui.css',
__dirname + '/redmond/images/animated-overlay.gif',
__dirname + '/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png',
__dirname + '/smoothness/images/ui-bg_flat_75_ffffff_40x100.png',
__dirname + '/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png',
__dirname + '/smoothness/images/ui-bg_glass_65_ffffff_1x400.png',
__dirname + '/smoothness/images/ui-bg_glass_75_dadada_1x400.png',
__dirname + '/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png',
__dirname + '/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png',
__dirname + '/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png',
__dirname + '/smoothness/images/ui-icons_222222_256x240.png',
__dirname + '/smoothness/images/ui-icons_2e83ff_256x240.png',
__dirname + '/smoothness/images/ui-icons_454545_256x240.png',
__dirname + '/smoothness/images/ui-icons_888888_256x240.png',
__dirname + '/smoothness/images/ui-icons_cd0a0a_256x240.png',
]
});
builder.addModule({
name: 'Aristo',
type: 'theme',
files: [
__dirname + '/aristo/jquery-ui.css',
__dirname + '/aristo/images/bg_fallback.png',
__dirname + '/aristo/images/icon_sprite.png',
__dirname + '/aristo/images/progress_bar.gif',
__dirname + '/aristo/images/slider_handles.png',
__dirname + '/aristo/images/ui-icons_222222_256x240.png',
__dirname + '/aristo/images/ui-icons_454545_256x240.png',
]
});
builder.addModule({
name: 'Redmond',
type: 'theme',
files: [
__dirname + '/redmond/jquery-ui.css',
__dirname + '/redmond/images/animated-overlay.gif',
__dirname + '/redmond/images/ui-bg_flat_0_aaaaaa_40x100.png',
__dirname + '/redmond/images/ui-bg_flat_55_fbec88_40x100.png',
__dirname + '/redmond/images/ui-bg_glass_75_d0e5f5_1x400.png',
__dirname + '/redmond/images/ui-bg_glass_85_dfeffc_1x400.png',
__dirname + '/redmond/images/ui-bg_glass_95_fef1ec_1x400.png',
__dirname + '/redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png',
__dirname + '/redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png',
__dirname + '/redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png',
__dirname + '/redmond/images/ui-icons_217bc0_256x240.png',
__dirname + '/redmond/images/ui-icons_2e83ff_256x240.png',
__dirname + '/redmond/images/ui-icons_469bdd_256x240.png',
__dirname + '/redmond/images/ui-icons_6da8d5_256x240.png',
__dirname + '/redmond/images/ui-icons_cd0a0a_256x240.png',
__dirname + '/redmond/images/ui-icons_d8e7f3_256x240.png',
__dirname + '/redmond/images/ui-icons_f9bd01_256x240.png',
]
});