2022-11-09 21:14:59 +08:00
|
|
|
import chalk from 'chalk'
|
|
|
|
import { readFileSync } from 'fs'
|
|
|
|
import path from 'path'
|
|
|
|
import { fileURLToPath } from 'url'
|
2018-09-19 23:35:38 +08:00
|
|
|
|
2022-11-09 21:14:59 +08:00
|
|
|
const dirname = path.dirname(fileURLToPath(import.meta.url), '..')
|
|
|
|
const msgPath = path.resolve(dirname, '../.git/COMMIT_EDITMSG')
|
|
|
|
const msg = readFileSync(msgPath, 'utf-8').trim()
|
2018-09-19 23:35:38 +08:00
|
|
|
|
2022-11-09 21:14:59 +08:00
|
|
|
const commitRE =
|
|
|
|
/^(revert: )?(feat|fix|docs|dx|style|refactor|perf|test|workflow|build|ci|chore|types|wip|release)(\(.+\))?: .{1,50}/
|
2018-09-19 23:35:38 +08:00
|
|
|
|
|
|
|
if (!commitRE.test(msg)) {
|
|
|
|
console.log()
|
|
|
|
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(compiler): add 'comments' option`)}\n` +
|
|
|
|
` ${chalk.green(
|
|
|
|
`fix(v-model): handle events on blur (close #28)`
|
|
|
|
)}\n\n` +
|
2019-10-11 23:22:41 +08:00
|
|
|
chalk.red(` See .github/commit-convention.md for more details.\n`)
|
2018-09-19 23:35:38 +08:00
|
|
|
)
|
|
|
|
process.exit(1)
|
|
|
|
}
|