npm install won't install devDependencies

前端 未结 9 2086
别跟我提以往
别跟我提以往 2020-11-28 17:34

On windows for some reason when I run npm install it won\'t install devDependencies. AFAIK it should. If I run npm install --dev <

9条回答
  •  生来不讨喜
    2020-11-28 18:14

    Make sure your package.json is valid...

    I had the following error...

    npm WARN Invalid name: "blah blah blah"

    and that, similarly, caused devDependencies not to be installed.

    FYI, changing the package.json "name" to blah-blah-blah fixed it.

提交回复
热议问题