Skip to content
This repository was archived by the owner on Feb 8, 2024. It is now read-only.

Commit d8bcd18

Browse files
committed
feat: add conventional-changelog and cz-customizable
1 parent 375b178 commit d8bcd18

4 files changed

Lines changed: 292 additions & 4 deletions

File tree

.cz-config.js

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
module.exports = {
2+
types: [
3+
{ value: 'feat', name: 'feat: A new feature' },
4+
{ value: 'fix', name: 'fix: A bug fix' },
5+
{ value: 'docs', name: 'docs: Documentation only changes' },
6+
{ value: 'style', name: 'style: Changes that do not affect the meaning of the code\n (white-space, formatting, missing semi-colons, etc)' },
7+
{ value: 'refactor', name: 'refactor: A code change that neither fixes a bug nor adds a feature' },
8+
{ value: 'perf', name: 'perf: A code change that improves performance' },
9+
{ value: 'test', name: 'test: Adding missing tests' },
10+
{ value: 'chore', name: 'chore: Changes to the build process or auxiliary tools\n and libraries such as documentation generation' },
11+
{ value: 'revert', name: 'revert: Revert to a commit' },
12+
{ value: 'WIP', name: 'WIP: Work in progress' },
13+
],
14+
scopes: [
15+
{ name: 'createrest' },
16+
{ name: 'createrest-express' },
17+
{ name: 'createrest-koa' },
18+
{ name: 'documentation' },
19+
],
20+
allowCustomScopes: true,
21+
allowBreakingChanges: ['feat', 'fix', 'revert'],
22+
}

changelog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<a name=""></a>
2-
# [](https://github.com/atomixinteractions/createrest/compare/v0.14.2...v) (2017-12-26)
2+
# [](https://github.com/atomixinteractions/createrest/compare/v0.14.2...v) (2018-01-22)
33

44

55
### Build system

package-lock.json

Lines changed: 260 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)