Skip to content

Commit cd0b377

Browse files
sethbergmanyyx990803
authored andcommitted
chore(docs): Fixed broken links (#750)
* fix(docs): Fixed broken links * Update Plugin.md
1 parent 199c754 commit cd0b377

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/COMMIT_CONVENTION.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Git Commit Message Convention
22

3-
> This is adapted from [Angular's commit convention](https://github.com/conventional-changelog/conventional-changelog/blob/master/packages/conventional-changelog-angular/convention.md).
3+
> This is adapted from [Angular's commit convention](https://github.com/conventional-changelog/conventional-changelog/blob/master/packages/conventional-changelog-angular/readme.md).
44
55
#### TL;DR:
66

.github/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Alternatively, you can run the tests inside specific packages with the `-p` flag
4040
yarn test -p cli,cli-service
4141
```
4242

43-
If the package is a plugin, you can ommit the `cli-plugin-` prefix:
43+
If the package is a plugin, you can omit the `cli-plugin-` prefix:
4444

4545
``` sh
4646
yarn test -p typescript

docs/Plugin.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ module.exports = (api, options, rootOptions) => {
102102

103103
Currently, only built-in plugins have the ability to customize the prompts when creating a new project, and the prompt modules are located [inside the `@vue/cli` package][prompt-modules].
104104

105-
A prompt module should export a function that recieves a [PromptModuleAPI][prompt-api] instance. The prompts uses [inquirer](https://github.com/SBoudrias/Inquirer.js) under the hood:
105+
A prompt module should export a function that receives a [PromptModuleAPI][prompt-api] instance. The prompts are presented using [inquirer](https://github.com/SBoudrias/Inquirer.js) under the hood:
106106

107107
``` js
108108
module.exports = api => {
@@ -139,4 +139,5 @@ module.exports = api => {
139139
[commands]: https://github.com/vuejs/vue-cli/tree/dev/packages/@vue/cli-service/lib/commands
140140
[config]: https://github.com/vuejs/vue-cli/tree/dev/packages/@vue/cli-service/lib/config
141141
[plugin-api]: https://github.com/vuejs/vue-cli/tree/dev/packages/@vue/cli-service/lib/PluginAPI.js
142-
[prompt-modules]: https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli/lib/promptModules
142+
[prompt-modules]: https://github.com/vuejs/vue-cli/tree/dev/packages/@vue/cli/lib/promptModules
143+
[prompt-api]: https://github.com/vuejs/vue-cli/tree/dev/packages/@vue/cli/lib/PromptModuleAPI.js

0 commit comments

Comments
 (0)