-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathverify-commit.js
30 lines (27 loc) · 1014 Bytes
/
verify-commit.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
// @ts-check
import { readFileSync } from 'node:fs'
import path from 'node:path'
import process from 'node:process'
import pico from 'picocolors'
const msgPath = path.resolve('.git/COMMIT_EDITMSG')
const msg = readFileSync(msgPath, 'utf-8').trim()
const commitRE
= /^(?:revert: )?(?:feat|fix|docs|dx|style|refactor|perf|test|workflow|build|ci|chore|types|wip|release)(?:\(.+\))?: .{1,50}/
const versionRE = /^v\d+\.\d+\.\d+$/
if (!commitRE.test(msg) && !versionRE.test(msg)) {
console.log()
console.error(
` ${pico.white(pico.bgRed(' ERROR '))} ${pico.red(
`invalid commit message format.`,
)}\n\n${
pico.red(
` Proper commit message format is required for automated changelog generation. Examples:\n\n`,
)
} ${pico.green(`feat(compiler): add 'comments' option`)}\n`
+ ` ${pico.green(
`fix(v-model): handle events on blur (close #28)`,
)}\n\n${
pico.red(` See .github/commit-convention.md for more details.\n`)}`,
)
process.exit(1)
}