From: Swapnil Agarwal <2833845+swapagarwal@users.noreply.github.com> Date: Sat, 5 Oct 2019 14:38:42 +0000 (+0530) Subject: docs: fix 'commit message convention' link (#95) X-Git-Tag: v3.0.0-alpha.0~599 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0fe88017825b04cee8131b983b24f0f0742cf052;p=thirdparty%2Fvuejs%2Fcore.git docs: fix 'commit message convention' link (#95) --- diff --git a/.github/contributing.md b/.github/contributing.md index 92b4c0795a..f7fd73a600 100644 --- a/.github/contributing.md +++ b/.github/contributing.md @@ -31,7 +31,7 @@ Hi! I'm really excited that you are interested in contributing to Vue.js. Before - Make sure tests pass! -- Commit messages must follow the [commit message convention](./COMMIT_CONVENTION.md) so that changelogs can be automatically generated. Commit messages are automatically validated before commit. +- Commit messages must follow the [commit message convention](./commit-convention.md) so that changelogs can be automatically generated. Commit messages are automatically validated before commit. - No need to worry about code style as long as you have installed the dev dependencies - modified files are automatically formatted with Prettier on commit. diff --git a/scripts/verifyCommit.js b/scripts/verifyCommit.js index 5429d6c5a6..9b76cf993d 100644 --- a/scripts/verifyCommit.js +++ b/scripts/verifyCommit.js @@ -21,7 +21,7 @@ if (!commitRE.test(msg)) { ` ${chalk.green( `fix(v-model): handle events on blur (close #28)` )}\n\n` + - chalk.red(` See .github/COMMIT_CONVENTION.md for more details.\n`) + + chalk.red(` See .github/commit-convention.md for more details.\n`) + chalk.red( ` You can also use ${chalk.cyan( `npm run commit`