I have two versions of the same package in my node_modules. Because we want a smooth transition to the newer version of the package which has many breaking changes. Many.
These packages in turn depend on some other packages which are also double versioned with an alias.
So,
package
package-helper
package-latest
package-latest-helper
My aliased package-latest-helper is supposed to import from package-latest, but uhoh! It doesn't. It tries to import from package. Bang. Error.
Can I scope an alias so that just package-latest-helper sees it?