-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.make.js
384 lines (354 loc) · 12 KB
/
webpack.make.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
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
/*eslint-env node*/
const _ = require('lodash');
const CompressionPlugin = require('compression-webpack-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const HtmlWebpackHarddiskPlugin = require('html-webpack-harddisk-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const OptimizeCssAssetsPlugin = require('optimize-css-assets-webpack-plugin');
const path = require('path');
const UglifyJsPlugin = require('uglifyjs-webpack-plugin');
const webpack = require('webpack');
module.exports = function makeWebpackConfig(options) {
/**
* Environment type
* BUILD is for generating minified builds
* TEST is for generating test builds
*/
const BUILD = !!options.BUILD;
const TEST = !!options.TEST;
const DEV = !!options.DEV;
/**
* Config
* Reference: http://webpack.github.io/docs/configuration.html
* This is the object where all configuration gets set
*/
const config = {};
config.mode = BUILD
? 'production'
: 'development';
/**
* Entry
* Reference: http://webpack.github.io/docs/configuration.html#entry
* Should be an empty object if it's generating a test build
* Karma will set this when it's a test build
*/
if(!TEST) {
config.entry = {
app: './client/app/app.ts',
polyfills: './client/app/polyfills.ts',
vendor: [
'lodash'
]
};
}
/**
* Output
* Reference: http://webpack.github.io/docs/configuration.html#output
* Should be an empty object if it's generating a test build
* Karma will handle setting it up for you when it's a test build
*/
if(TEST) {
config.output = {};
} else {
config.output = {
// Absolute output directory
path: BUILD ? path.join(__dirname, '/dist/client/') : path.join(__dirname, '/.tmp/'),
// Output path from the view of the page
// Uses webpack-dev-server in development
publicPath: BUILD || DEV ? '/' : `http://localhost:${8080}/`,
//publicPath: BUILD ? '/' : 'http://localhost:' + env.port + '/',
// Filename for entry points
// Only adds hash in build mode
filename: BUILD ? '[name].[hash].js' : '[name].bundle.js',
// Filename for non-entry points
// Only adds hash in build mode
chunkFilename: BUILD ? '[name].[hash].js' : '[name].bundle.js'
};
}
config.resolve = {
modules: ['node_modules'],
extensions: ['.js', '.ts'],
alias: {
primus: path.resolve(__dirname, 'client/components/socket/primus.js'),
}
};
if(TEST) {
config.resolve = {
modules: [
'node_modules'
],
extensions: ['.js', '.ts'],
alias: {
// for some reason the primus client and webpack don't get along in test
primus: path.resolve(__dirname, 'client/components/socket/primus.mock.ts'),
}
};
}
/**
* Devtool
* Reference: http://webpack.github.io/docs/configuration.html#devtool
* Type of sourcemap to use per build type
*/
if(TEST) {
config.devtool = 'inline-source-map';
} else if(BUILD || DEV) {
config.devtool = 'source-map';
} else {
config.devtool = 'eval';
}
/**
* Loaders
* Reference: http://webpack.github.io/docs/configuration.html#module-loaders
* List: http://webpack.github.io/docs/list-of-loaders.html
* This handles most of the magic responsible for converting modules
*/
// Initialize module
config.module = {
rules: [{
// JS LOADER
// Reference: https://github.com/babel/babel-loader
// Transpile .js files using babel-loader
// Compiles ES6 and ES7 into ES5 code
test: /\.js$/,
use: [{
loader: 'babel-loader',
options: {
presets: [
['babel-preset-env', {
// debug: true,
targets: {
browsers: ['last 2 versions', 'not dead'],
},
debug: true,
modules: false,
}]
],
plugins: [
'angular2-annotations',
'transform-runtime',
'transform-decorators-legacy',
'transform-class-properties',
'transform-export-extensions',
].concat(TEST ? ['istanbul'] : []),
}
}].concat(DEV ? '@angularclass/hmr-loader' : []),
include: [
path.resolve(__dirname, 'client/'),
path.resolve(__dirname, 'server/config/environment/shared.js'),
path.resolve(__dirname, 'node_modules/lodash-es/'),
]
}, {
// TS LOADER
// Reference: https://github.com/s-panferov/awesome-typescript-loader
// Transpile .ts files using awesome-typescript-loader
test: /\.ts$/,
use: [{
loader: 'awesome-typescript-loader',
options: {
tsconfig: path.resolve(__dirname, 'tsconfig.json')
},
}].concat(DEV ? '@angularclass/hmr-loader' : []),
include: [
path.resolve(__dirname, 'client/')
]
}, {
// ASSET LOADER
// Reference: https://github.com/webpack/file-loader
// Copy png, jpg, jpeg, gif, svg, woff, woff2, ttf, eot files to output
// Rename the file using the asset hash
// Pass along the updated reference to your code
// You can add here any file extension you want to get copied to your output
test: /\.(png|jpg|jpeg|gif|svg|woff|woff2|ttf|eot)([\?]?.*)$/,
use: 'file-loader'
}, {
// HTML LOADER
// Reference: https://github.com/webpack/raw-loader
// Allow loading html through js
test: /\.html$/,
use: 'raw-loader'
}, {
// CSS LOADER
// Reference: https://github.com/webpack/css-loader
// Allow loading css through js
//
// Reference: https://github.com/postcss/postcss-loader
// Postprocess your css with PostCSS plugins
test: /\.css$/,
use: [
DEV ? 'style-loader' : MiniCssExtractPlugin.loader,
'css-loader',
'postcss-loader',
],
include: [
path.resolve(__dirname, 'node_modules/bootstrap/dist/css/*.css'),
path.resolve(__dirname, 'client/app/app.css')
]
}, {
// SASS LOADER
// Reference: https://github.com/jtangelder/sass-loader
test: /\.(scss|sass)$/,
use: [
DEV ? 'style-loader' : MiniCssExtractPlugin.loader,
'css-loader?sourceMap',
'postcss-loader',
'sass-loader',
],
include: [
path.resolve(__dirname, 'node_modules/bootstrap-sass/assets/stylesheets/*.scss'),
path.resolve(__dirname, 'client/app/app.scss')
]
}, {
// SASS LOADER
// Reference: https://github.com/jtangelder/sass-loader
test: /\.(scss|sass)$/,
use: [
'to-string-loader?sourceMap',
'css-loader?sourceMap',
'postcss-loader',
'sass-loader?sourceMap',
],
include: [
path.resolve(__dirname, 'client')
],
exclude: [/app\.scss$/]
}]
};
//TODO: TS Instrumenter
/**
* Plugins
* Reference: http://webpack.github.io/docs/configuration.html#plugins
* List: http://webpack.github.io/docs/list-of-plugins.html
*/
config.plugins = [
// Hides the 'the request of a dependency is an expression' warnings
new webpack.ContextReplacementPlugin(
/angular(\\|\/)core/,
path.resolve(__dirname, '../src')
),
new webpack.LoaderOptionsPlugin({
options: {
context: __dirname
},
sassLoader: {
outputStyle: 'compressed',
precision: 10,
sourceComments: false
},
})
];
if(BUILD) {
config.plugins.push(
new CompressionPlugin({}),
// https://github.com/webpack-contrib/mini-css-extract-plugin
new MiniCssExtractPlugin({
filename: '[name].[hash].css',
chunkFilename: '[id].[hash].css',
}),
);
}
// Skip rendering app.html in test mode
// Reference: https://github.com/ampedandwired/html-webpack-plugin
// Render app.html
if(!TEST) {
config.plugins.push(
new HtmlWebpackPlugin({
template: 'client/app.template.html',
filename: '../client/app.html',
alwaysWriteToDisk: true,
}),
new HtmlWebpackHarddiskPlugin(),
);
}
let localEnv;
try {
localEnv = require('./server/config/local.env').default;
} catch(e) {
localEnv = {};
}
localEnv = _.mapValues(localEnv, value => `"${value}"`);
localEnv = _.mapKeys(localEnv, (value, key) => `process.env.${key}`);
let env = _.merge({
'process.env.NODE_ENV': DEV ? '"development"'
: BUILD ? '"production"'
: TEST ? '"test"'
: '"development"'
}, localEnv);
// Reference: https://webpack.github.io/docs/list-of-plugins.html#defineplugin
// Define free global variables
config.plugins.push(new webpack.DefinePlugin(env));
if(DEV) {
config.plugins.push(
new webpack.HotModuleReplacementPlugin(),
);
}
config.cache = DEV;
if(BUILD) {
config.optimization = {
splitChunks: {
cacheGroups: {
styles: {
name: 'styles',
test: /\.css$/,
chunks: 'all',
enforce: true
},
},
},
minimizer: [
new UglifyJsPlugin({
cache: true,
parallel: true,
sourceMap: true // set to true if you want JS source maps
}),
new OptimizeCssAssetsPlugin({}),
],
};
}
if(TEST) {
config.stats = {
colors: true,
reasons: true
};
}
/**
* Dev server configuration
* Reference: http://webpack.github.io/docs/configuration.html#devserver
* Reference: http://webpack.github.io/docs/webpack-dev-server.html
*/
config.devServer = {
contentBase: './client/',
hot: true,
proxy: {
'/api': {
target: 'http://localhost:9000',
secure: false,
},
'/auth': {
target: 'http://localhost:9000',
secure: false,
},
'/primus': {
target: 'http://localhost:9000',
secure: false,
ws: true,
},
},
stats: {
modules: false,
cached: false,
colors: true,
chunks: false,
},
historyApiFallback: {
index: 'app.html'
},
};
config.node = {
global: true,
process: true,
crypto: false,
clearImmediate: false,
setImmediate: false,
};
return config;
};