@intellihr/blueberry 1.0.0-alpha.2 → 1.0.0-alpha.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +14 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -115,3 +115,17 @@ Blueberry is built on top of Create React App. The following scripts are availab
|
|
|
115
115
|
- `npm run build` - Builds the app for production to the `build` folder.
|
|
116
116
|
|
|
117
117
|
- `npm run eject` - Ejects the app from CRA's single build config
|
|
118
|
+
|
|
119
|
+
### Semantic Release
|
|
120
|
+
|
|
121
|
+
Blueberry uses [semantic-release](https://github.com/semantic-release/semantic-release) to manage its release, versioning, and publish processes.
|
|
122
|
+
|
|
123
|
+
The package relies on commit messages to determine how to handle the version upgrade:
|
|
124
|
+
|
|
125
|
+
| Commit message | Release type |
|
|
126
|
+
| --- | --- |
|
|
127
|
+
| fix(button): stop click from firing twice | Fix Release (patch) |
|
|
128
|
+
| feat(button): add Button component | Feature Release (minor) |
|
|
129
|
+
| perf(button): remove `size` prop<br><br>BREAKING CHANGE: Button no longer supports sizes. Use the ButtonIcon component for smaller buttons. | Breaking Release (major)<br><br>(Note that the BREAKING CHANGE: token must be in the footer of the commit) |
|
|
130
|
+
|
|
131
|
+
If semantic-release is run without a commit that matches one of the following formats, nothing will happen.
|
package/package.json
CHANGED