A webpack plugin to run shell script by trgger webpack compiler hooks
npm i --save-dev shell-script-webpack-plugin
const ShellScript = require('shell-script-webpack-plugin');
module.exports = {
plugins: [new ShellScript({
watchRun: 'your script'
})]
}