-
Notifications
You must be signed in to change notification settings - Fork 145
Expand file tree
/
Copy pathverifyCommit.cjs
More file actions
executable file
·25 lines (23 loc) · 987 Bytes
/
verifyCommit.cjs
File metadata and controls
executable file
·25 lines (23 loc) · 987 Bytes
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
/* eslint-disable @typescript-eslint/no-var-requires */
/* eslint-disable import/order */
const args = require('minimist')(process.argv.slice(2))
const msgPath = args._[0]
const msg = require('fs').readFileSync(msgPath, 'utf-8').trim()
const releaseRE = /^v\d/
const commitRE = /^(revert: )?(feat|fix|docs|dx|refactor|perf|test|workflow|build|ci|chore|types|wip|release|deps)(\(.+\))?: .{1,50}/
if (!releaseRE.test(msg) && !commitRE.test(msg)) {
console.log()
const chalk = require('chalk')
console.error(
` ${chalk.bgRed.white(' ERROR ')} ${chalk.red(
'invalid commit message format.',
)}\n\n${
chalk.red(
' Proper commit message format is required for automated changelog generation. Examples:\n\n',
)
} ${chalk.green('feat: add \'comments\' option')}\n`
+ ` ${chalk.green('fix: handle events on blur (close #28)')}\n\n${
chalk.red(' See .github/commit-convention.md for more details.\n')}`,
)
process.exit(1)
}