2017-01-03 19:11:18 +02:00
|
|
|
const plugins = require('./plugins');
|
2016-12-05 22:11:55 +02:00
|
|
|
const base = require('./base');
|
2016-10-20 04:14:26 +03:00
|
|
|
|
2016-12-05 22:11:55 +02:00
|
|
|
|
|
|
|
module.exports = Object.assign(base, {
|
2017-02-07 17:52:24 +02:00
|
|
|
bail: true,
|
|
|
|
devtool: 'source-map',
|
2017-01-03 19:11:18 +02:00
|
|
|
entry: [
|
|
|
|
base.entry
|
|
|
|
],
|
2016-12-05 22:11:55 +02:00
|
|
|
plugins: base.plugins.concat([
|
2017-02-07 17:52:24 +02:00
|
|
|
plugins['occurrence-order'](),
|
|
|
|
plugins['aggressive-merging'](),
|
|
|
|
plugins['uglify-js']()
|
|
|
|
]),
|
|
|
|
node: {
|
|
|
|
fs: 'empty',
|
|
|
|
net: 'empty',
|
|
|
|
tls: 'empty'
|
|
|
|
}
|
2016-10-20 04:14:26 +03:00
|
|
|
});
|
|
|
|
|
2016-12-12 12:56:48 +02:00
|
|
|
/**
|
2016-10-20 04:14:26 +03:00
|
|
|
* Maybe add in the future:
|
|
|
|
* - https://github.com/lettertwo/appcache-webpack-plugin
|
|
|
|
* - https://github.com/NekR/offline-plugin
|
|
|
|
* - https://github.com/goldhand/sw-precache-webpack-plugin
|
|
|
|
* - https://github.com/Klathmon/imagemin-webpack-plugin
|
2016-12-12 12:56:48 +02:00
|
|
|
**/
|