Is there any way the I can define two registries in publishConfig in package.json?
the use case is for publishing the artifact in 2 different location based on the purpose, when it is a SNAPSHOT it will use the snapshot path and for release purpose it uses the other one.
something like:
"publishConfig": {
"snapshot-registry": "http://artifactory.test/artifactory/api/npm-snapshots"
"release-registry": "http://artifactory.test/artifactory/api/npm-releases"
},