Я пытаюсь создать веб-страницу с модулями CSS и Webpack, следуя инструкциям здесь . У меня все было в порядке, пока я не запустил npm start
, а затем он выдал мне следующую ошибку:
> css-modules@1.0.0 start /Users/username/Desktop/css-modules
> webpack && open index.html
webpack not installed
Install webpack to start bundling:
$ npm install --save-dev webpack
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! css-modules@1.0.0 start: `webpack && open index.html`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the css-modules@1.0.0 start script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! /Users/username/.npm/_logs/2020-05-06T04_09_47_528Z-debug.log
… хотя я установил webpack.
Что мне делать?