forked from aburtsev/codelab.ai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.cz-config.js
130 lines (124 loc) · 3.65 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
const path = require('path')
const glob = require('glob')
const R = require('ramda')
const files = glob.sync('@(apps|libs)/**/tsconfig.json', {
ignore: [
'**/node_modules/**/tsconfig.json',
'**/.storybook/**/tsconfig.json',
],
})
/**
* We take the file path and creating array of dirnames. We then create all ordered combinations. We will have duplicates at this point
*/
const allPathCombinations = (paths, file) => {
// ['libs', 'core', 'node']
const pathSepArr = path.dirname(file).split(path.sep)
// ['libs']
// ['libs-core']
// ['libs-core-node']
const nestedPaths = pathSepArr.reduce((acc, curr, index) => {
return [...acc, pathSepArr.slice(0, index + 1).join('-')]
}, [])
return [...paths, ...nestedPaths]
}
const scopes = R.pipe(
R.reduce(allPathCombinations, []),
R.sort((a, b) => a.localeCompare(b)),
R.uniq,
R.addIndex(R.map)((name, index) => {
return {
value: name,
name: `${index + 1}) ${name}`,
}
}),
)(files)
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: 'lint',
name: '6) lint: A code change that resolves lint errors',
},
{
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',
},
{
value: 'wip',
name: '13) wip: Work-in-progress',
},
{
value: 'tf',
name: '14) tf: terraform code',
},
],
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:
'This commit CLOSES any issues if specified (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: 'CLOSES:',
// askForBreakingChangeFirst : true, // default is false
}