1.0.1 • Published 5 years ago

webpack-pre-post-plugin v1.0.1

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

webpack-pre-post-plugin

Execute shell commands on each compilation (before and after).

Install

npm i -D webpack-pre-post-plugin

Use

const PrePostPlugin = require('webpack-pre-post-plugin');

// ...webpack config file...

  plugins: [
    new PrePostPlugin({
      pre: ['echo "Webpack Start"'],
      post: ['echo "Webpack End"']
    })
  ],