spawn-webpack-plugin

1.0.1 • Public • Published

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

Readme

Keywords

none

Package Sidebar

Install

npm i spawn-webpack-plugin

Weekly Downloads

1

Version

1.0.1

License

MIT

Last publish

Collaborators

  • fdaciuk