-
Notifications
You must be signed in to change notification settings - Fork 3
/
rbuild.js
112 lines (112 loc) · 2.78 KB
/
rbuild.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
({
baseUrl: 'node_modules/materialize-css/js',
name: '../../../materialize-css',
out: 'node_modules/materialize-css/dist/js/materialize.amd.js',
paths: {
'jquery': '../../jquery/dist/jquery',
'initial': 'initial',
'global': 'global',
'animation': 'animation',
'buttons': 'buttons',
'cards': 'cards',
'carousel': 'carousel',
'character_counter': 'character_counter',
'chips': 'chips',
'collapsible': 'collapsible',
'dropdown': 'dropdown',
'forms': 'forms',
'hammerjs': 'hammer.min',
'jquery.easing': 'jquery.easing.1.3',
'jquery.hammer': 'jquery.hammer',
'jquery.timeago': 'jquery.timeago.min',
'leanModal': 'leanModal',
'materialbox': 'materialbox',
'parallax': 'parallax',
'picker': 'date_picker/picker',
'picker.date': 'date_picker/picker.date',
'prism': 'prism',
'pushpin': 'pushpin',
'scrollFire': 'scrollFire',
'scrollspy': 'scrollspy',
'sideNav': 'sideNav',
'slider': 'slider',
'tabs': 'tabs',
'toasts': 'toasts',
'tooltip': 'tooltip',
'transitions': 'transitions',
'velocity': 'velocity.min',
'waves': 'waves'
},
shim: {
'jquery': { exports: '$' },
'animation': ['jquery'],
'buttons': ['jquery'],
'cards': ['jquery'],
'carousel': ['jquery'],
'character_counter': ['jquery'],
'chips': ['jquery'],
'collapsible': ['jquery'],
'dropdown': ['jquery'],
'forms': ['jquery', 'global'],
'global': { deps: ['jquery'], exports: 'Materialize' },
'hammerjs': {},
'jquery.easing': ['jquery'],
'jquery.hammer': { deps: ['jquery', 'hammerjs', 'waves'] },
'jquery.timeago': ['jquery'],
'leanModal': ['jquery'],
'materialbox': ['jquery'],
'parallax': ['jquery'],
'prism': ['jquery'],
'pushpin': ['jquery'],
'scrollFire': ['jquery', 'global'],
'scrollspy': ['jquery'],
'sideNav': ['jquery'],
'slider': ['jquery'],
'tabs': ['jquery'],
'toasts': {
deps: ['global', 'hammerjs', 'velocity'], init: function(Materialize, Hammer, Vel) {
window.Hammer = Hammer;
window.Vel = Vel;
}
},
'tooltip': ['jquery'],
'transitions': ['jquery', 'scrollFire'],
'waves': { exports: 'Waves' }
},
optimize: 'none',
exclude: ['jquery'],
include: [
'initial',
'global',
'animation',
'buttons',
'cards',
'carousel',
'character_counter',
'chips',
'collapsible',
'dropdown',
'forms',
'hammerjs',
'jquery.easing',
'jquery.hammer',
'jquery.timeago',
'leanModal',
'materialbox',
'parallax',
'picker',
'picker.date',
'prism',
'pushpin',
'scrollFire',
'scrollspy',
'sideNav',
'slider',
'tabs',
'toasts',
'tooltip',
'transitions',
'velocity',
'waves'
]
});