Prechádzať zdrojové kódy

docs: fix 'commit message convention' link (#95)

Swapnil Agarwal 6 rokov pred
rodič
commit
0fe8801782
2 zmenil súbory, kde vykonal 2 pridanie a 2 odobranie
  1. 1 1
      .github/contributing.md
  2. 1 1
      scripts/verifyCommit.js

+ 1 - 1
.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.
 

+ 1 - 1
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`