Summary
publishConfig can be defined in package.json & later used when running npm publish. Users may not be aware they have separate config defined for this operation making it confusing to debug or troubleshoot.
Exit Criteria
Example
; "publish" config from package.json
registry = "npm.pkg.github.com"
Summary
publishConfigcan be defined inpackage.json& later used when runningnpm publish. Users may not be aware they have separate config defined for this operation making it confusing to debug or troubleshoot.Exit Criteria
npm config listshould log thepublishConfigconfiguration if it exists in the cwdpackage.json(notably, there should be some meaningful distinction to explain & delineate this output similar to how we log user-level config)Example