GitXplorerGitXplorer
j

npm-check-webpack-plugin

public
4 stars
4 forks
1 issues

Commits

List of commits on branch master.
Verified
2401ede571dd404961f0bf8cbd5e97b0c6ed31a0

Add archive notice

jjoefiorini committed 2 years ago
Verified
a257db024004dda7dc952c08ee87e8ccb1807de3

Merge pull request #3 from msftenhanceprovenance/patch-1

jjoefiorini committed 2 years ago
Verified
0cb846b6c9b46cb5fc08f2239fabf2ee41c9f43d

Update package.json to include the repository key

mmsftenhanceprovenance committed 4 years ago
Unverified
4a36a9e3fb58df21873a7129144af067321dffce

1.1.0

jjoefiorini committed 9 years ago
Unverified
46b842fdfcad0b3961640f4f14a06a6b58eb0e57

Remove use of deprecated npm library objects

jjoefiorini committed 9 years ago
Unverified
d33b9d25f814c1e7dcb64edecd865c5972d0b0d5

Update npm-check library

jjoefiorini committed 9 years ago

README

The README file for this repository.

** This package is now deprecated and archived. It hasn't seen any development in the past 7 years and it's not something I use or maintain anymore. **

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] }*/)
      ]
  };