install-webpack-plugin icon indicating copy to clipboard operation
install-webpack-plugin copied to clipboard

Speed up development by automatically installing & saving dependencies with Webpack.

Results 53 install-webpack-plugin issues
Sort by recently updated
recently updated
newest added

Thank you for producing this awesome module! 👍 😸 I use a wrapper around Webpack rather than Webpack directly. That wrapper contains css-loader, style-loader, babel-loader etc. I've also added npm-install-webpack-plugin...

If peerDependencies were handled like any other normal module the plugin tries to install and Webpack was able to resolve the package name, they wouldn't be installed. e.g. when you're...

The only reliable repro I can get is that this happens *every single time* I attempt to document nwb's `--[auto-]install` option with some example output: ``` λ preact run Lightbulb.js...

The cynics have no problem killing processes, restarting servers, & having a crappy workflow to `npm install` dependencies, but have a problem with maybe accidentally installing a dependency because they've...

type: Feature

After I installed this plugin and added it to my `webpack.config.js`: ``` plugins: [ new NpmInstallPlugin(), ] ``` it tries to reinstall webpack over and over and doesn't stop: ```...

``` npm WARN [email protected] requires a peer of webpack@>=1.3.0

type: Bug

Hello, I use the `@angularclass/hmr-loader` npm webpack plugin, but it tries to install a lib named `@angularclass-loader`, looks like it doesn't handle the `/` well. From my webpack config: ```...

type: Bug

This would be useful for `@terse/webpack`'s own `Plugin` class, so that it can auto-install stuff that's missing.

type: Feature

that's my .babelrc ``` { "presets": ["es2015", "react"], "plugins": [ "babel-root-import" ], "env": { "development": { "presets": ["react-hmre"] } } } ``` and this is what I get when I...

type: Feature

Specifically, try this for Webpack2. For example, `.babelrc` has `es2015`, but `babel-loader` uses `es2015-webpack` for tree-shaking.

type: Feature