alexanderGugel / ied

:package: Like npm, but faster - an alternative package manager for Node
http://alexandergugel.github.io/ied
MIT License
1.99k stars 53 forks source link

ied install not executing npm install in local dependencies folders #199

Open cancerberoSgx opened 6 years ago

cancerberoSgx commented 6 years ago

i just tried ied in my (complex) project and I noticed that if I have a dependency to a local folder, ied links it which is alright but it doesn't execute npm install inside of it so my app fails. Something like this:

package.json : dependencies: { "sc5-styleguide": "file:./my/local/folder" }

after executing ied install there there should be a new folder ./my/local/folder/node_modules for the application to work - as it happens in npm . Thanks