npm install won't install devDependencies

前端 未结 9 2087
别跟我提以往
别跟我提以往 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 17:59

    make sure you don't have env variable NODE_ENV set to 'production'.

    If you do, dev dependencies will not be installed without the --dev flag

提交回复
热议问题