Skip to content

Commit

Permalink
major: release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
xstelea committed Sep 24, 2023
1 parent 8e3d986 commit 6a957fb
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 1 deletion.
24 changes: 23 additions & 1 deletion commitlint.config.js
Original file line number Diff line number Diff line change
@@ -1 +1,23 @@
module.exports = { extends: ['@commitlint/config-conventional'] }
module.exports = {
extends: ['@commitlint/config-conventional'],
rules: {
'type-enum': () => [
2,
'always',
[
'build',
'chore',
'ci',
'docs',
'feat',
'fix',
'perf',
'refactor',
'revert',
'style',
'test',
'major',
],
],
},
}
8 changes: 8 additions & 0 deletions release.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ module.exports = {
type: 'refactor',
release: 'patch',
},
{
type: 'major',
release: 'major',
},
{
type: 'docs',
scope: 'README',
Expand Down Expand Up @@ -84,6 +88,10 @@ module.exports = {
section: ':bug: Fixes',
hidden: false,
},
{
type: 'major',
release: 'major',
},
{
type: 'docs',
section: ':memo: Documentation',
Expand Down

0 comments on commit 6a957fb

Please sign in to comment.