conventional-changelog-beemo
Advanced tools
Comparing version 1.5.3 to 1.6.0
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.COMMIT_FORMAT_PREFIX = /^(break|breaking|build|ci|deps|docs|feature|fix|internal|misc|new|patch|release|revert|security|style|test|types|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|tests|type|types|update)(?:\(([a-zA-Z0-9\-., ]+)\))?:/u; | ||
exports.GROUPS = [ | ||
@@ -31,3 +31,3 @@ { | ||
label: 'Internals', | ||
types: ['ci', 'build', 'test', 'internal'], | ||
types: ['ci', 'build', 'test', 'tests', 'internal'], | ||
}, | ||
@@ -68,3 +68,3 @@ { | ||
label: 'Types', | ||
types: ['types'], | ||
types: ['type', 'types'], | ||
}, | ||
@@ -71,0 +71,0 @@ { |
@@ -15,3 +15,3 @@ export interface Note { | ||
} | ||
export declare type CommitType = 'break' | 'breaking' | 'release' | 'new' | 'update' | 'feature' | 'fix' | 'deps' | 'docs' | 'patch' | 'style' | 'security' | 'revert' | 'ci' | 'build' | 'test' | 'types' | 'internal' | 'misc'; | ||
export declare type CommitType = 'break' | 'breaking' | 'release' | 'new' | 'update' | 'feature' | 'fix' | 'deps' | 'docs' | 'patch' | 'style' | 'security' | 'revert' | 'ci' | 'build' | 'test' | 'tests' | 'type' | 'types' | 'internal' | 'misc'; | ||
export declare type CommitGroupLabel = 'Breaking' | 'Release' | 'Updates' | 'Fixes' | 'Dependencies' | 'Docs' | 'Styles' | 'Security' | 'Reverts' | 'Types' | 'Internals' | 'Misc'; | ||
@@ -18,0 +18,0 @@ export interface Group { |
{ | ||
"name": "conventional-changelog-beemo", | ||
"version": "1.5.3", | ||
"version": "1.6.0", | ||
"description": "Conventional changelog preset for Beemo and associated projects.", | ||
@@ -19,2 +19,3 @@ "keywords": [ | ||
"scripts": { | ||
"prepare": "beemo create-config --silent", | ||
"build": "beemo typescript", | ||
@@ -33,7 +34,7 @@ "coverage": "yarn run jest --coverage", | ||
"devDependencies": { | ||
"@milesj/build-tools": "^0.59.2", | ||
"@types/node": "^12.12.7", | ||
"@milesj/build-tools": "^0.60.4", | ||
"@types/node": "^12.12.14", | ||
"@types/shelljs": "^0.8.6", | ||
"conventional-changelog-core": "^4.1.0", | ||
"conventional-recommended-bump": "^6.0.4", | ||
"conventional-changelog-core": "^4.1.1", | ||
"conventional-recommended-bump": "^6.0.5", | ||
"shelljs": "^0.8.3" | ||
@@ -40,0 +41,0 @@ }, |
@@ -45,3 +45,3 @@ # conventional-changelog-beemo | ||
- `security` - Improves security. | ||
- `types` - Updates type system related syntax (TS/Flow). | ||
- `type`, `types` - Updates type system related syntax (TS/Flow). | ||
- `misc` - Catch all for commits that don't align with other types. | ||
@@ -53,3 +53,3 @@ | ||
- `build` - Changes to the build system. | ||
- `test` - Changes to tests or the testing framework. | ||
- `test`, `tests` - Changes to tests or the testing framework. | ||
- `internal` - Internal changes not critical for the consumer. | ||
@@ -56,0 +56,0 @@ |
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
24217