I wanna develop 2 versions of package with same name, but different versions:
first
// package.json
{
"name":"mypackage",
"version": "1.0.0-base"
}
second
// package.json
{
"name":"mypackage",
"version": "2.0.0-next"
}
Now I wanna in two different projects do:
npm link <path to [email protected]>
or
npm link <path to [email protected]>
For now , when I do that, last linked package "replace" the every linked module with name mypackage in previous linked projects.
I know that npm has "global space" for linking... but is there any way to get around this ?