I\'d like to run webpack in --watch mode, and run a shell command after each build that synchronizes a folder to another one.
--watch
I found this plugin that t
Use webpack-shell-plugin
How to Use:
const WebpackShellPlugin = require('webpack-shell-plugin'); module.exports = { ... ... plugins: [ new WebpackShellPlugin({onBuildStart:['echo "Webpack Start"'], onBuildEnd:['echo "Webpack End"']}) ], ... }