Bye on-build-webpack (#4404)
* Update webpack.config.ts * Update package.json
This commit is contained in:
parent
0b27d8a717
commit
ce02e1e528
2 changed files with 9 additions and 2 deletions
|
@ -6,11 +6,19 @@ import * as fs from 'fs';
|
|||
import * as webpack from 'webpack';
|
||||
import chalk from 'chalk';
|
||||
const { VueLoaderPlugin } = require('vue-loader');
|
||||
const WebpackOnBuildPlugin = require('on-build-webpack');
|
||||
//const HardSourceWebpackPlugin = require('hard-source-webpack-plugin');
|
||||
const ProgressBarPlugin = require('progress-bar-webpack-plugin');
|
||||
const TerserPlugin = require('terser-webpack-plugin');
|
||||
|
||||
class WebpackOnBuildPlugin {
|
||||
constructor(readonly callback: (stats: any) => void) {
|
||||
}
|
||||
|
||||
public apply(compiler: any) {
|
||||
compiler.hooks.done.tap('WebpackOnBuildPlugin', this.callback);
|
||||
}
|
||||
}
|
||||
|
||||
const isProduction = process.env.NODE_ENV == 'production';
|
||||
|
||||
const constants = require('./src/const.json');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue