-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy path.cz-config.js
109 lines (106 loc) · 3.12 KB
/
.cz-config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
const path = require('path')
const glob = require('glob')
const scopes = glob
.sync('@(apps|libs)/**/tsconfig.json', {
ignore: [
'**/node_modules/**/tsconfig.json',
'**/.storybook/**/tsconfig.json',
],
})
// Array of filepaths
.map((file) => {
const paths = path.dirname(file).split(path.sep)
return paths.join('-')
})
// Get concatenated path names
.map((name, index) => {
return {
value: name,
name: `${index + 2}) ${name}`,
}
})
module.exports = {
types: [
{ value: 'feat', name: '1) feat: A new feature' },
{ value: 'fix', name: '2) fix: A bug fix' },
{ value: 'docs', name: '3) docs: Documentation only changes' },
{
value: 'style',
name: '4) style: Changes that do not affect the meaning of the code',
},
{
value: 'refactor',
name:
'5) refactor: A code change that neither fixes a bug nor adds a feature ',
},
{
value: 'pref',
name: '6) pref: A code change that improves performance',
},
{
value: 'test',
name: '7) test: Adding missing tests or correcting existing tests',
},
{
value: 'build',
name:
'8) build: Changes that affect the build system or external dependencies',
},
{
value: 'ci',
name: '9) ci: Changes to our CI configuration files and scripts',
},
{
value: 'chore',
name: "10) chore: Other changes that don't modify src or test files",
},
{
value: 'revert',
name: '11) revert: Reverts a previous commit',
},
{
value: 'story',
name: '12) story: Storybook examples',
},
],
scopes: [{ value: 'libs' }, { value: 'apps' }, { value: 'tools' }, ...scopes],
allowTicketNumber: true,
isTicketNumberRequired: false,
ticketNumberPrefix: '',
ticketNumberRegExp: '#\\d{1,5}',
// it needs to match the value for field type. Eg.: 'fix'
/*
scopeOverrides: {
fix: [
{name: 'merge'},
{name: 'style'},
{name: 'e2eTest'},
{name: 'unitTest'}
]
},
*/
// override the messages, defaults are as follows
messages: {
type: "Select the type of change that you're committing:",
scope: '\nDenote the SCOPE of this change (optional):',
// used if allowCustomScopes is true
customScope: 'Denote the SCOPE of this change:',
subject: 'Write a SHORT, IMPERATIVE tense description of the change:\n',
body:
'Provide a LONGER description of the change (optional). Use "|" to break new line:\n',
breaking: 'List any BREAKING CHANGES (optional):\n',
footer:
'List any ISSUES CLOSED by this change (optional). E.g.: #31, #34:\n',
confirmCommit: 'Are you sure you want to proceed with the commit above?',
},
allowCustomScopes: false,
allowBreakingChanges: ['feat', 'fix'],
// skip any questions you want
// skipQuestions: ['ticketNumber'],
skipQuestions: ['breaking'],
// limit subject length
subjectLimit: 100,
// breaklineChar: '|', // It is supported for fields body and footer.
// footerPrefix : 'ISSUES CLOSED:'
// askForBreakingChangeFirst : true, // default is false
}