npm install won't install devDependencies

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

    You can use the short way for installation dependencies only for development as follows:

    npm i -D 
    

提交回复
热议问题