Reputation: 27745
Does every module I publish to https://<private>.registry.nodejitsu.com/
become private?
I assumed the private
package.json flag would play into it, but I just published a module intended for NPM to nodejitsu, configured as my default registry as recommended, and it got trapped as a private module.
Upvotes: 1
Views: 28
Reputation: 27745
After a chat with nodejitsu support, yep, they're all private. Publish public modules directly to npmjs.org:
$ npm publish --registry="http://registry.npmjs.org"
Upvotes: 1