conventional-changelog-beemo
Advanced tools
Comparing version 1.3.0 to 1.4.0
@@ -0,1 +1,7 @@ | ||
## 1.4.0 - 2019-07-07 | ||
#### 🚀 Updates | ||
- Added `breaking` as another type alias for breaking changes. | ||
## 1.3.0 - 2019-05-09 | ||
@@ -2,0 +8,0 @@ |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.COMMIT_FORMAT_PREFIX = /^(break|build|ci|deps|docs|feature|fix|internal|misc|new|patch|release|revert|security|style|test|update)(?:\(([a-zA-Z0-9\-., ]+)\))?:/u; | ||
exports.COMMIT_FORMAT_PREFIX = /^(break|breaking|build|ci|deps|docs|feature|fix|internal|misc|new|patch|release|revert|security|style|test|update)(?:\(([a-zA-Z0-9\-., ]+)\))?:/u; | ||
exports.GROUPS = [ | ||
@@ -9,3 +9,3 @@ { | ||
label: 'Breaking', | ||
types: ['break'], | ||
types: ['break', 'breaking'], | ||
}, | ||
@@ -12,0 +12,0 @@ { |
@@ -15,3 +15,3 @@ export interface Note { | ||
} | ||
export declare type CommitType = 'break' | 'release' | 'new' | 'update' | 'feature' | 'fix' | 'deps' | 'docs' | 'patch' | 'style' | 'security' | 'revert' | 'ci' | 'build' | 'test' | 'internal' | 'misc'; | ||
export declare type CommitType = 'break' | 'breaking' | 'release' | 'new' | 'update' | 'feature' | 'fix' | 'deps' | 'docs' | 'patch' | 'style' | 'security' | 'revert' | 'ci' | 'build' | 'test' | 'internal' | 'misc'; | ||
export declare type CommitGroupLabel = 'Breaking' | 'Release' | 'Updates' | 'Fixes' | 'Dependencies' | 'Docs' | 'Styles' | 'Security' | 'Reverts' | 'Internals' | 'Misc'; | ||
@@ -18,0 +18,0 @@ export interface Group { |
{ | ||
"name": "conventional-changelog-beemo", | ||
"version": "1.3.0", | ||
"version": "1.4.0", | ||
"description": "Conventional changelog preset for Beemo and associated projects.", | ||
@@ -32,4 +32,4 @@ "keywords": [ | ||
"devDependencies": { | ||
"@milesj/build-tools": "^0.45.0", | ||
"@types/node": "^11.13.1", | ||
"@milesj/build-tools": "^0.49.0", | ||
"@types/node": "^12.0.12", | ||
"@types/shelljs": "^0.8.5", | ||
@@ -36,0 +36,0 @@ "conventional-changelog-core": "^3.2.2", |
@@ -8,9 +8,10 @@ # conventional-changelog-beemo | ||
> [conventional-changelog](https://github.com/conventional-changelog/conventional-changelog) > | ||
> [beemo](https://github.com/beemojs/beemo) preset | ||
> [beemo preset](https://github.com/beemojs/beemo) | ||
Beemo's commit message guidelines and changelog structure. | ||
Beemo's commit message guidelines and changelog structure. _Now with more emojis!_ | ||
## Commit Message Format | ||
The commit message format consists of a **type**, optional **scope**, and a **message**: | ||
The commit message format consists of a **type**, optional **scope** in parens, and a required | ||
**message**: | ||
@@ -29,3 +30,3 @@ ``` | ||
- `break` - A _major_ breaking change. | ||
- `break`, `breaking` - A _major_ breaking change. | ||
- `release` - Not a breaking change but bumps the _major_ version. | ||
@@ -71,3 +72,3 @@ | ||
- Capitalize first letter of message. | ||
- Trailing punctuation (period) is not required. | ||
- Trailing punctuation (period) is not required, but preferred. | ||
@@ -74,0 +75,0 @@ ## Example |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
28903
105