@solenoden/npm-publish-demo
v1.3.1
Published
Common utilities revolving around endpoints, such as the validation of request data.
Downloads
2
Readme
A demo project to help me figure out how using Azure DevOps with NPM would work
So far:
- Register npm account
- Generate access token for npm account
- Create NPM service endpoint on Azure DevOps using the access token
- Publish package to npmjs.org with the following pipeline step.
- task: Npm@1
inputs:
command: 'custom'
customCommand: 'publish --access public'
# customEndpoint = name of npm service endpoint
customEndpoint: 'npm'
displayName: 'Publish package to NPM'