Package Exports
- @dan-schel/js-utils
Readme
My JS Utils
A library for code common to my various NodeJS/Browser projects.
Bump check
This package includes a bump-check
script which is useful if you're writing
an NPM package and you want your CI to ensure the feature branch bumps the
version in package.json
before being merged.
To use it, include the following in your package.json
:
"scripts": {
"bump-check": "bump-check"
}
You can also configure it to ignore branches based on regex, e.g.:
"scripts": {
"bump-check": "bump-check --ignore \"^renovate\\/\""
}