This plugin zip your dist each time at the end of the build.
npm install --save-dev webpack-dist-zip
const WebpackDistZip = require('webpack-dist-zip');
const webpackConfig = {
plugins: [
new WebpackDistZip(),
],
};
module.exports = webpackConfig;
new WebpackDistZip({
// default
entry: './dist',
output: './dist.zip'
})