I\'m working on a CLI tool in NodeJS that uses another NodeJs package that we develop, which is an SDK.
The thing is, we just published a V2 version of that SDK, and we
So to just add up to current solutions you can also provide packages like so:
yarn add my-sdk-newest@npm:my-sdk
or in package.json
package.json
{ ... "my-sdk-newest": "npm:my-sdk", "my-sdk": "1.0.0" ... }
if you only care about specific legacy version and the newest.