[Vuejs]-Vue.v3@0.1.0 serve: `vue-cli-service serve`

0👍

npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! hypermarket@0.1.0 serve: `vue-cli-service serve`
npm ERR!
npm ERR! Failed at the hypermarket@0.1.0 serve script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

This happens when you remove a Dependency from package.js.

—->For example: when i removed the “eslint” by npm remove eslint command , encountered this error.

—->my solution is: npm install eslint

i found the my problem by compare “package.js” using git changes.

Leave a comment