-
Notifications
You must be signed in to change notification settings - Fork 3
/
webpack.make.js
290 lines (260 loc) · 8.39 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
// Modules
const webpack = require('webpack');
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const WebpackNotifierPlugin = require('webpack-notifier');
const WebpackCleanPlugin = require('clean-webpack-plugin');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const fs = require('fs');
/**
* Make webpack config
* @param {object} options Builder options
* @param {boolean} options.TEST Generate a test config
* @param {boolean} options.BUILD Generate a build config
* @returns {object} Webpack configuration object
*/
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 ENVIRONMENT = options.ENVIRONMENT;
/**
* Environment values
*/
/**
* Config
* Reference: http://webpack.github.io/docs/configuration.html
* This is the object where all configuration gets set
*/
const config = {};
const packDate = { date: new Date().toISOString() };
fs.writeFile('webpack.date.json', JSON.stringify(packDate));
/**
* 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 = {};
}
else {
// config.context = __dirname + "/app/js",
// config.entry = {
// app: './app.js'
// }
config.entry = './src/index.js';
}
/**
* 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: path.join(__dirname, 'dist'),
// Output path from the view of the page
// Uses webpack-dev-server in development, see: http://webpack.github.io/docs/webpack-dev-server.html#combining-with-an-existing-server
publicPath: BUILD ? './' : 'http://localhost:8080/dist',
// 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',
};
}
/**
* 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) {
config.devtool = 'source-map';
}
else {
config.devtool = 'eval';
// config.devtool = 'inline-source-map'
}
/**
* 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 = {
preLoaders: [],
loaders: [{
// ASSET LOADER
// Reference: https://github.com/webpack/file-loader
// Copy png, jpg, jpeg, gif, svg, woff, 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: /\.(ttf|eot|otf|svg)(\?v=[0-9]\.[0-9]\.[0-9])?$/,
loader: 'file',
},
{
// similar to file loader but can inline small files: https://github.com/webpack/url-loader
test: /\.(png|jpg|jpeg|gif)$/,
loader: 'url?limit=8192', // inlines if <8k
},
{
test: /\.woff(2)?(\?v=[0-9]\.[0-9]\.[0-9])?$/,
loader: 'url-loader?limit=10000&mimetype=application/font-woff',
},
{
test: /\.json$/,
loader: 'json-loader',
},
{
// Allow us to load CSV files as strings.
test: /\.csv$/,
loader: 'raw-loader',
},
] };
// ISPARTA LOADER
// Reference: https://github.com/ColCh/isparta-instrumenter-loader
// Instrument JS files with Isparta for subsequent code coverage reporting
// Skips node_modules and files that end with .test.js and .test.jsx
if (TEST) {
config.module.preLoaders.push({
test: /\.(js|jsx)$/,
exclude: [
/node_modules/,
/\.test\.(js|jsx)$/,
],
loader: 'isparta-instrumenter',
});
}
// JSX LOADER
// Transpile .jsx files using babel-loader
const jsxLoader = {
test: /\.(js|jsx)$/,
loader: 'babel',
exclude: [
/node_modules/,
],
};
// Add react-hot-loader when not in build or test mode
if (!BUILD && !TEST) {
// Reference: https://github.com/gaearon/react-hot-loader
// This will reload react components without refresh
jsxLoader.loader = 'react-hot!' + jsxLoader.loader;
}
// Add jsxLoader to the loader list
config.module.loaders.push(jsxLoader);
// Stylesheets
// Reference: http://webpack.github.io/docs/stylesheets.html
//
// 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
const cssLoader = {
test: /\.css$/,
loader: 'style!css' + (BUILD ? '' : '') + '!autoprefixer?browsers=last 2 version',
};
// Skip loading css in test mode
if (TEST) {
// Reference: https://github.com/webpack/null-loader
// Return an empty module
cssLoader.loader = 'null';
}
// Add cssLoader to the loader list
config.module.loaders.push(cssLoader);
/**
* Plugins
* Reference: http://webpack.github.io/docs/configuration.html#plugins
* List: http://webpack.github.io/docs/list-of-plugins.html
*/
config.plugins = [
// Reference: http://webpack.github.io/docs/list-of-plugins.html#noerrorsplugin
// Only emit files when there are no errors
new webpack.NoErrorsPlugin(),
new WebpackNotifierPlugin(),
new CopyWebpackPlugin([
{ from: './src/csv', to: './csv' },
]),
// Reference: https://github.com/webpack/extract-text-webpack-plugin
// Extract css files
// Disabled when in test mode or not in build mode
// new ExtractTextPlugin('[name].[hash].css', {
// disable: !BUILD || TEST
// }),
// Reference: http://webpack.github.io/docs/list-of-plugins.html#defineplugin
// Can be used to replace other values as well
new webpack.DefinePlugin({
'process.env.NODE_ENV': JSON.stringify(ENVIRONMENT), // see: https://github.com/petehunt/webpack-howto for a trick for hiding dev and pre-release features
}),
// Reference: https://www.npmjs.com/package/html-webpack-plugin
// Uses index.html as template, appends scripts/css, and moves to templates/app
// Note: npm dev script needs to run webpack regularly the first time to make sure this file
// actually gets emitted to the file system rather than kept in memory
new HtmlWebpackPlugin({
template: './src/index.html',
inject: 'body',
filename: 'index.html',
}),
];
// Skip rendering index.html in test mode
// if (!TEST) {
// // Reference: https://github.com/ampedandwired/html-webpack-plugin
// // Render index.html
// config.plugins.push(
// new HtmlWebpackPlugin({
// title: 'Web application',
// minify: BUILD
// })
// )
// }
// Add build specific plugins
if (BUILD) {
config.plugins.push(
new WebpackCleanPlugin(['./dist']),
// Reference: http://webpack.github.io/docs/list-of-plugins.html#dedupeplugin
// Dedupe modules in the output
new webpack.optimize.DedupePlugin(),
// Reference: http://webpack.github.io/docs/list-of-plugins.html#uglifyjsplugin
// Minify all javascript, switch loaders to minimizing mode
new webpack.optimize.UglifyJsPlugin()
);
}
/**
* 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: './dist',
stats: {
modules: false,
cached: false,
colors: true,
chunk: false,
},
};
// config.node = {
// console: true,
// fs: 'empty',
// net: 'empty',
// tls: 'empty',
// dns: 'empty',
// dgram: 'empty',
// };
return config;
};