1.0.2 • Published 6 years ago
webpack-hooks-shellscripts v1.0.2
webpack-hooks-shellscripts
Just triggers some shellscripts on webpack compiler hooks.
Install
yarn add -D webpack-hooks-shellscriptsUsage
Add the plugin to your webpack config.
// webpack.config.js
const hooksScriptPlugin = require('webpack-hooks-shellscripts')
module.exports = {
  plugins: [
    hooksScriptPlugin({
      beforeEmit: ['rm -r ./dist'],
      afterEmit: ['echo "Build succeeded"']
    })
  ]
}API
hooksShellScriptsPlugin(bindings)
bindings
Type: object
Hooks/Scripts bindings.
// example
{
  beforeRun: ['echo "do this"', 'echo "then that"'],
  beforeCompile: ['./do-something']
}See https://webpack.js.org/api/compiler-hooks/ to get an exhaustive hooks list.
License
MIT © Nutshell