Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error: Cannot find module 'connect-livereload'

I was following the steps provided as on the web http://yeoman.io/. After doing with all the steps, i am facing this error message `$ grunt Loading "Gruntfile.js" tasks...ERROR

Error: Cannot find module 'connect-livereload' Warning: Task "default" not found. Use --force to continue`

In my package.json, i have all my dependency packages

"connect-livereload": "~0.2.0", "grunt-google-cdn": "~0.2.0", "grunt-ngmin": "~0.0.2", "grunt-contrib-livereload": "~0.1.2"

like image 647
Thillai Narayanan Avatar asked Aug 04 '13 16:08

Thillai Narayanan


1 Answers

I've got the same issue. Fixed it this way:

npm install --save-dev connect-livereload
npm install

May be "npm install" is enough.

like image 84
Mickaël Sauvée Avatar answered Jan 01 '23 07:01

Mickaël Sauvée