Hmmm
So lets say
App1 - C:\Projects\App1\v1.3.2\scripts\Unit.js
App2 - C:\Projects\App2\v.2.3.1\scripts\Unit2.js
So in App2, I included a script from App1. Problem is in Unit.js, it doesn't know that it actually belongs to "App1." So Even I go back to the projects folder (that they share), I wouldn't know how to proceed into App1 folder. Unless in App1 Unit.js itself, I hard-code something like dir=App1... but that doesnt work when we include git versions unless we update the hard-code each time.
The last way I could think of is provide a soft link in the directory to the latest version. And in App1 Unit.js I hard-code App1\latest and it can redirect to the latest v... but its so round-about.
Thanks