Когда я запускаю $ npm install, я получаю предупреждение,
$ npm install
npm WARN url-loader@1.1.1 requires a peer of webpack@^4.0.0 but none is installed. You must install peer dependencies yourself.
audited 13881 packages in 8.785s
found 0 vulnerabilities
В package.json я вижу, что я использую "webpack": "^ 3.6.0",
Я изменяю это в package.json на «webpack»: «^ 4.0.0»,
и снова запускаю $ npm install, это дает,
npm WARN extract-text-webpack-plugin@3.0.2 requires a peer of webpack@^3.1.0 but none is installed. You must install peer dependencies yourself.
npm WARN html-webpack-plugin@2.30.1 requires a peer of webpack@1 || ^2 || ^2.1.0-beta || ^2.2.0-rc || ^3 but none is installed. You must install peer dependencies yourself.
npm WARN webpack-dev-server@2.11.3 requires a peer of webpack@^2.2.0 || ^3.0.0 but none is installed. You must install peer dependencies yourself.
npm WARN webpack-dev-middleware@1.12.2 requires a peer of webpack@^1.0.0 || ^2.0.0 || ^3.0.0 but none is installed. You must install peer dependencies yourself.
added 25 packages from 9 contributors, removed 56 packages, updated 4 packages and audited 14965 packages in 11.25s
found 0 vulnerabilities
Как я могу решить это?
Спасибо