This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

npm-check-webpack-plugin

1.1.0 • Public • Published

npm-check-webpack-plugin

Uses the npm-check library to check for missing dependencies before running a webpack build. By default, if it finds any missing or outdated dependencies it will automatically run npm install before continuing with the build.

Installation

npm install npm-check-webpack-plugin

Usage

In webpack.config.js (or whatever file you have your webpack config in):

var NpmCheckPlugin = require('npm-check-webpack-plugin');
/* ES6:
   import NpmCheckPlugin from 'npm-check-webpack-plugin';
 */
 
module.exports =
  { //... webpack config
    plugins:
      [ new NpmCheckPlugin(/* { autoInstall: [false|true*] silent: [false*|true] }*/)
      ]
  };

/npm-check-webpack-plugin/

    Package Sidebar

    Install

    npm i npm-check-webpack-plugin

    Weekly Downloads

    25

    Version

    1.1.0

    License

    ISC

    Last publish

    Collaborators

    • joefiorini