Currently, I am tackling a series of JavaScript projects that have interdependencies between them. My choice of using JSPM as the package manager has been going smoothly so far. However, for efficient and seamless development, I am seeking the best approach.
How can I establish dependencies from one project to another in a completely transparent manner? I want to effortlessly switch between projects during local work without the need for packaging or installing packages. Additionally, I aim to ensure that the package information, along with its dependencies, aligns with the anticipated release (public package) and is compatible with CI builds.
When using NPM, I would typically employ 'npm link' - are there similar strategies or tools that could be beneficial in this scenario?