We are using NPM tags for our development process to publish to the internal registry with standard NPM Tags.
Example:
npm publish --access public --registry <URL> --tag development
We want to be able to install a package as a reference to a Tag version instead of using a specific version number.
For example, we need this for internal build server to differentiate which packages to use to build and test PR.
We just say tag instead of a specific version.
"com.company.xrprovider": "1.0.0-preview.11",
"com.company.xrprovider": "development",
How could I say Unity to load the last package with NPM Tag? Or what are the options here?
Thank you.