gruntjs / grunt-cli

Grunt's command line interface.
http://gruntjs.com/
MIT License
706 stars 248 forks source link

npm ERR! 409 Conflict: v8flags@~3.1.1 #128

Closed AdamBD closed 5 years ago

AdamBD commented 5 years ago

Hello,

Up till today I was able to install grunt-cli perfectly globally in my container using RUN npm install -g grunt-cli

However today I see the following error:

    Step 10/16 : RUN npm install -g grunt-cli
     ---> Running in 66321fb48589
    npm ERR! code E409
    npm ERR! 409 Conflict: v8flags@~3.1.1   

I believe this means that there is a conflict happening in v8flags@~3.1.1 which is a dependency grunt-cli has? Is this correct?

Any ideas what to do

shama commented 5 years ago

409 Conflict is a HTTP status code: https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/409

It's not related to the dependency itself but npm having issues when downloading the dependency. I would just try again and then --force-recreate the container if it persists.