1.0.1 • Published 7 years ago

spawn-webpack-plugin v1.0.1

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

Spawn Webpack Plugin

Run terminal commands with webpack

Installation

yarn add --dev spawn-webpack-plugin

or using NPM:

npm i --save-dev spawn-webpack-plugin

Usage

Inside a webpack.config.js file, on plugins entry, add:

const SpawnPlugin = require('spawn-webpack-plugin')

// your config...

plugins: [
  // your plugins...
  new SpawnPlugin({
    command: 'yarn lint', // Required. Just put a valid command you can run on terminal
    sync: true, // Optional. `false` by default
    spawn: require('cross-spawn') // Optional. Just use it if you want to use another version of `require('child_process').spawn`
  })
]

License

MIT © Fernando Daciuk

1.0.1

7 years ago

1.0.0

7 years ago