how can I force npm 3 to install nested dependencies?

前端 未结 3 1730
無奈伤痛
無奈伤痛 2020-12-13 10:40

I just upgraded to npm version 3 and noticed one of the biggest changes it made is that it enforces a flat dependency tree.

Your dependencies will now

3条回答
  •  醉梦人生
    2020-12-13 11:03

    This is what happens when I don’t get enough sleep. The obvious solution somehow escaped me.

    $ cd node_modules/A/
    $ npm install
    $ cd ../../
    

提交回复
热议问题