Closed PeterDaveHello closed 8 years ago
This is kind of by design. Problem is in the local resolve mechanism:
https://github.com/alexanderGugel/ied/blob/master/src/install.js#L69
Just fixed this in a375f38, I've only added semver check for explicit install to minimize the performance hit & since I'm not sure it should be needed otherwise.
Still not work for me on v2.0.5. (BTW, v2.0.5 version tag is missing in git repo)
Thanks, will this be shipped on a new version soon? Just asking, thanks.
Yup, this will be included in the next version.
Okay, thanks.
npm behavior:
npm install jquery@3
-> node_modules/jquery = jquery@3.0.0 thennpm install jquery@2
-> node_modules/jquery = jquery@2.2.4ied behavior:
ied install jquery@3
-> node_modules/jquery = jquery@3.0.0 thenied install jquery@2
-> node_modules/jquery = jquery@3.0.0 (doesn't change)The installed jquery in node_modules/jquery didn't be changed since the first/clean install, is this a bug? Thanks!