You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
C:\sites\YDR\branches\refactoring\development>webpack
Installing babel-loader...
npm WARN optional Skipping failed optional dependency /chokidar/fsevents:
npm WARN notsup Not compatible with your operating system or architecture: [email protected]
npm WARN [email protected] requires a peer of webpack@>=1.3.0 <3 but none was installed.
npm WARN [email protected] No description
npm WARN [email protected] No repository field.
Installing peerDependencies...
Installing [email protected]...
npm WARN optional Skipping failed optional dependency /chokidar/fsevents:
npm WARN notsup Not compatible with your operating system or architecture: [email protected]
npm WARN [email protected] requires a peer of webpack@>=1.3.0 <3 but none was installed.
npm WARN [email protected] No description
npm WARN [email protected] No repository field.
Installing peerDependencies...
Installing [email protected]...
npm WARN optional Skipping failed optional dependency /chokidar/fsevents:
npm WARN notsup Not compatible with your operating system or architecture: [email protected]
npm WARN [email protected] requires a peer of webpack@>=1.3.0 <3 but none was installed.
npm WARN [email protected] No description
npm WARN [email protected] No repository field.
(....and it goes on and on....)
I assume it's because I'm including webpack at the beginning of my config?
var webpack = require('webpack');
var autoprefixer = require('autoprefixer');
var ExtractTextPlugin = require('extract-text-webpack-plugin');
var NpmInstallPlugin = require('npm-install-webpack-plugin');
The text was updated successfully, but these errors were encountered:
After I installed this plugin and added it to my
webpack.config.js
:it tries to reinstall webpack over and over and doesn't stop:
I assume it's because I'm including webpack at the beginning of my config?
The text was updated successfully, but these errors were encountered: