Is it possible to install npm package only if it has not been already installed?

后端 未结 5 1692
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-12-30 19:03

Is it possible to install npm package only if it has not been already installed?

I need this to speed up test on CircleCI, but when I run npm inst

5条回答
  •  时光说笑
    2020-12-30 19:53

    [ $(node -p "try{require('protractor/package.json').version}catch(e){}") != "2.1.0" ]  && npm install grunt
    

提交回复
热议问题