2018-03-02 14:32:18 -08:00
|
|
|
import * as fs from 'fs';
|
2018-02-22 11:53:33 -08:00
|
|
|
import * as webpack from 'webpack';
|
2018-03-02 14:32:18 -08:00
|
|
|
const WebpackOnBuildPlugin = require('on-build-webpack');
|
|
|
|
const HardSourceWebpackPlugin = require('hard-source-webpack-plugin');
|
2018-02-24 21:32:37 -08:00
|
|
|
const ProgressBarPlugin = require('progress-bar-webpack-plugin');
|
2018-02-24 22:50:25 -08:00
|
|
|
import chalk from 'chalk';
|
2018-02-22 11:53:33 -08:00
|
|
|
|
2017-11-22 13:51:32 -08:00
|
|
|
import consts from './consts';
|
2017-06-25 17:04:42 -07:00
|
|
|
import hoist from './hoist';
|
2017-11-28 01:14:24 -08:00
|
|
|
import minify from './minify';
|
2017-05-16 08:00:56 -07:00
|
|
|
|
|
|
|
const env = process.env.NODE_ENV;
|
|
|
|
const isProduction = env === 'production';
|
|
|
|
|
2017-11-03 01:46:42 -07:00
|
|
|
export default (version, lang) => {
|
2017-05-16 08:00:56 -07:00
|
|
|
const plugins = [
|
2018-03-02 14:32:18 -08:00
|
|
|
new HardSourceWebpackPlugin(),
|
2018-02-24 22:50:25 -08:00
|
|
|
new ProgressBarPlugin({
|
|
|
|
format: chalk` {cyan.bold yes we can} {bold [}:bar{bold ]} {green.bold :percent} {gray (:current/:total)} :elapseds`,
|
|
|
|
clear: false
|
|
|
|
}),
|
2018-02-22 11:53:33 -08:00
|
|
|
consts(lang),
|
|
|
|
new webpack.DefinePlugin({
|
|
|
|
'process.env': {
|
|
|
|
NODE_ENV: JSON.stringify(process.env.NODE_ENV)
|
|
|
|
}
|
2018-03-02 14:32:18 -08:00
|
|
|
}),
|
|
|
|
new WebpackOnBuildPlugin(stats => {
|
|
|
|
fs.writeFileSync('./version.json', JSON.stringify({
|
|
|
|
version
|
|
|
|
}), 'utf-8');
|
2018-02-22 11:53:33 -08:00
|
|
|
})
|
2017-05-16 08:00:56 -07:00
|
|
|
];
|
2017-10-21 23:01:02 -07:00
|
|
|
|
2017-05-16 08:00:56 -07:00
|
|
|
if (isProduction) {
|
2018-02-14 19:36:42 -08:00
|
|
|
plugins.push(hoist());
|
2017-11-28 01:14:24 -08:00
|
|
|
plugins.push(minify());
|
2017-05-16 08:00:56 -07:00
|
|
|
}
|
2017-10-21 23:01:02 -07:00
|
|
|
|
2017-05-16 08:00:56 -07:00
|
|
|
return plugins;
|
|
|
|
};
|