1.0.2 • Published 5 years ago

webpack-hooks-shellscripts v1.0.2

Weekly downloads
6
License
MIT
Repository
github
Last release
5 years ago

webpack-hooks-shellscripts

Build Status Maintainability NPM version NPM bundle size

Just triggers some shellscripts on webpack compiler hooks.

Install

yarn add -D webpack-hooks-shellscripts

Usage

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

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago