@digabi/ui-result-list
v1.16.0
Published
## Publishing new versions
Downloads
2,745
Readme
ui-result-list
Publishing new versions
You need to set publish token before publishing:
npm config set _authToken=%YOUR_ACCES_TOKEN%
Token can be found in Keepass.
Alternatively you can have .npmrc file on your disk.
To preview changes in registry
repository:
- run
npm run compile
- copy folder
lib
intoregistry
repository intonode_modules/@digabi/ui-result-list
overwriting the oldlib
folder - run
make restart
inregistry
repository
Pre-release
Pre-releases are optional and usually used for testing changes on e.g. staging environments. Use separate branches when using pre-releases and clean commit history before merging into the main branch 🙏
git add .
git commit -a
npm run compile
git push
npm version prerelease --preid=rc
git push
npm publish --tag next
Release
Execute these on the main
branch after all changes to be published are merged and pushed
npm run compile
npm version minor
git push
npm publish