npm install
npm run start
cd demo
npm install
npm run start
In the main
branch, run one of the commands below to bunp the package version. It will update the version in the package.json
, package-lock.json
, and create a new version tag. It will also automatically commit the changes to those files.
When publishing package versions, please follow semantic versioning.
Publish a major version when you make incompatible API changes.
npm version major
Publish a minor version when you add functionality in a backward compatible manner.
npm version minor
Publish a patch version when you make backward compatible bug fixes.
npm version patch
Run git push --follow-tags
to push the main branch and tags to remote.
Pushing with a new version tag will trigger a build and deploy the package to Azure DevOps Artifacts.