I'm trying to publish a scoped npm package to Artifactory Online: my-company.jfrog.io/my-company
I'm experiencing the same problem described in this SO Question where I publish my package @scope/my-package and it deploys to Artifactory just fine but it winds up in the Artifactory Online path: npm-internal/@scope/my-package/-/@scope/my-package-1.2.3.tgz
When I run npm view @scope/my-package I get the 404 error:
npm ERR! 404 Not Found: @scope/my-package
In Artifactory, packages can be moved, and so I tried moving it from:
npm-internal/@scope/my-package/-/@scope/my-package-1.2.3.tgz
to
npm-internal/@scope/my-package-1.2.3.tgz
and try npm view @scope/my-package, get package details, and can perform an npm install @scope/my-package to install it.
Every answer I've found online has a solution to configure Tomcat to AllowEncodedSlashed. Is there an Artifactory Online equivalent?
I've rummaged through as much of the web app as I can think to rummage through to find anything resembling a configuration option to allow this to work and found nothing. I haven't found anything searching the docs.