2016-10-24 16:11:50 +03:00
|
|
|
const base = require('./base.js');
|
2016-10-20 04:14:26 +03:00
|
|
|
const webpack = require('webpack');
|
|
|
|
|
2016-10-24 16:11:50 +03:00
|
|
|
module.exports = Object.assign(base.config, {
|
2016-10-20 04:14:26 +03:00
|
|
|
entry: [
|
|
|
|
'./index.js'
|
|
|
|
],
|
2016-10-24 16:37:30 +03:00
|
|
|
plugins: base.config.plugins.concat([
|
2016-10-20 04:14:26 +03:00
|
|
|
new webpack.optimize.DedupePlugin(),
|
|
|
|
new webpack.optimize.OccurrenceOrderPlugin(true),
|
|
|
|
new webpack.optimize.UglifyJsPlugin()
|
|
|
|
]),
|
|
|
|
devtool: 'eval'
|
|
|
|
});
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
*/
|