@blaze-money/kindling
v1.1.13
Published
Shared utilities for frontend and backend
Readme
Kindling
Kindling is a shared utility library that provides common functionality used across Blaze's applications. It is published as an NPM package and serves as a core dependency for our main projects:
Publishing
This project uses automated semantic versioning and publishing to NPM through GitHub Actions. The process is triggered when a pull request is merged with one of the following labels:
patch- For backwards-compatible bug fixesminor- For new backwards-compatible functionalitymajor- For breaking changes
How it works
- Create a pull request with your changes
- Add one of the version labels (
patch,minor, ormajor) to the pull request - When the pull request is merged, GitHub Actions will automatically:
- Bump the version in package.json according to the label
- Create a new git tag
- Build the project
- Publish the new version to NPM
Example
- You fix a bug and create a pull request
- Add the
patchlabel to the pull request - After the pull request is merged, the version will automatically bump (e.g.,
1.0.0→1.0.1) - The new version will be published to NPM
Requirements
- NPM token must be configured in repository secrets as
NPM_TOKEN - Pull request must have one of the version labels
- User merging must have appropriate repository permissions
