-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpack.config.js
256 lines (246 loc) · 6.99 KB
/
webpack.config.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
const autoprefixer = require('autoprefixer');
/*** Main General Bundle ***/
// Creates the general bundle
var wpBundle = new Object({
entry: [
'./instance/js/swing_firebase-api-init.js',
'./static/css/swing_app.scss',
'./static/js/swing_firebase.js',
'./static/js/swing_app.js'
],
output: {
filename: 'static/js/bundle/swing-bundle.js',
library: 'swcms',
libraryTarget: 'var',
path: __dirname
},
module: {
rules: [
{
test: /\.js$/,
loader: 'babel-loader',
query: {
presets: [
[
'@babel/preset-env', {
'useBuiltIns': 'entry',
'corejs': {'version': '3', 'proposals': true},
}
]
],
},
},
{
test: /\.scss$/,
use: [
{ loader: 'file-loader',
options: {
name: 'static/css/bundle/swing-bundle.css',
},
},
{ loader: 'extract-loader' },
{ loader: 'css-loader' },
{ loader: 'postcss-loader',
options: {
plugins: () => [autoprefixer()]
},
},
{ loader: 'sass-loader',
options: {
// Prefer Dart Sass
implementation: require('sass'),
sassOptions: {
includePaths: ['./node_modules'],
},
webpackImporter: false,
}
}
]
}
]
}
});
/*** Specific Bundles ***/
// Creates the employees appointments bundle
var wpAppointmentsEmp = new Object({
entry: [
'./instance/js/swing_countrycitystate-api-key.json',
'./static/js/appointment-emp.js'
],
output: {
filename: 'static/js/bundle/appointments-e.min.js',
library: 'swapn',
libraryTarget: 'var',
path: __dirname
},
externals: {
jsCalendar: 'jsCalendar'
},
module: {
rules: [
{
test: /\.js$/,
loader: 'babel-loader',
query: {
plugins: [
'@babel/plugin-proposal-class-properties'
],
presets: [
[
'@babel/preset-env', {
'useBuiltIns': 'entry',
'corejs': {'version': '3', 'proposals': true},
}
]
]
}
}
]
}
});
// Creates the users appointments bundle
var wpAppointmentsUsr = new Object({
entry: [
'./instance/js/swing_countrycitystate-api-key.json',
'./static/js/appointment-usr.js'
],
output: {
filename: 'static/js/bundle/appointments-u.min.js',
library: 'swapn',
libraryTarget: 'var',
path: __dirname
},
module: {
rules: [
{
test: /\.js$/,
loader: 'babel-loader',
query: {
plugins: [
'@babel/plugin-proposal-class-properties'
],
presets: [
[
'@babel/preset-env', {
'useBuiltIns': 'entry',
'corejs': {'version': '3', 'proposals': true},
}
]
]
}
}
]
}
});
// Creates the view appointments bundle
var wpAppointmentsView = new Object({
entry: [
'./static/js/appointments-view.js'
],
output: {
filename: 'static/js/bundle/appointments-v.min.js',
library: 'swapn',
libraryTarget: 'var',
path: __dirname
},
externals: {
jsCalendar: 'jsCalendar'
},
module: {
rules: [
{
test: /\.js$/,
loader: 'babel-loader',
query: {
plugins: [
'@babel/plugin-proposal-class-properties'
],
presets: [
[
'@babel/preset-env', {
'useBuiltIns': 'entry',
'corejs': {'version': '3', 'proposals': true},
}
]
]
}
}
]
}
});
// Creates the initiator bundle - NOT IN USE
var wpRTCInitiator = new Object({
entry: [
'./static/js/rtc-initiator.js'
],
output: {
filename: 'static/js/bundle/rtc-initiator.min.js',
library: 'swrtc',
libraryTarget: 'var',
path: __dirname
},
module: {
rules: [
{
test: /\.js$/,
loader: 'babel-loader',
query: {
plugins: [
'@babel/plugin-proposal-class-properties'
],
presets: [
[
'@babel/preset-env', {
'useBuiltIns': 'entry',
'corejs': {'version': '3', 'proposals': true},
}
]
]
}
}
]
}
});
// Creates the receiver bundle - NOT IN USE
var wpRTCReceiver = new Object({
entry: [
'./static/js/rtc-receiver.js'
],
output: {
filename: 'static/js/bundle/rtc-receiver.min.js',
library: 'swrtc',
libraryTarget: 'var',
path: __dirname
},
module: {
rules: [
{
test: /\.js$/,
loader: 'babel-loader',
query: {
plugins: [
'@babel/plugin-proposal-class-properties'
],
presets: [
[
'@babel/preset-env', {
'useBuiltIns': 'entry',
'corejs': {'version': '3', 'proposals': true},
}
]
]
}
}
]
}
});
/*** Compilation of Bundles ***/
// Compile all modules
module.exports = [
// wpRTCInitiator,
// wpRTCReceiver,
wpAppointmentsEmp,
wpAppointmentsUsr,
wpAppointmentsView,
wpBundle
];