You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With this I can do require('sub-mod-0') without having to use something like require('../../sub-mod-0')
Installation via npm install works fine and populates node_modules/sub-mod-0 and node_modules/sub-mod-1 but updating them is not possible without manually deleting node_modules/sub-mod-* beforehand. Neither npm install nor npm update nor npm update sub-module-* have an effect even if the version of the sub-module is incremented.
I have some local dependencies on sub-modules in the same git repo like this:
With this I can do
require('sub-mod-0')without having to use something likerequire('../../sub-mod-0')Installation via
npm installworks fine and populatesnode_modules/sub-mod-0andnode_modules/sub-mod-1but updating them is not possible without manually deletingnode_modules/sub-mod-*beforehand. Neithernpm installnornpm updatenornpm update sub-module-*have an effect even if the version of the sub-module is incremented.Environment:
npm v2.6.0
node v0.10.25
Ubuntu 14.04.1 LTS