Skip to content

Commit

Permalink
chore(docs): Fixed broken links (vuejs#750)
Browse files Browse the repository at this point in the history
* fix(docs): Fixed broken links

* Update Plugin.md
  • Loading branch information
sethbergman authored and yyx990803 committed Feb 1, 2018
1 parent 199c754 commit cd0b377
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/COMMIT_CONVENTION.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Git Commit Message Convention

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

Expand Down
2 changes: 1 addition & 1 deletion .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Alternatively, you can run the tests inside specific packages with the `-p` flag
yarn test -p cli,cli-service
```

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

``` sh
yarn test -p typescript
Expand Down
5 changes: 3 additions & 2 deletions docs/Plugin.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ module.exports = (api, options, rootOptions) => {

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].

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:
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:

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

0 comments on commit cd0b377

Please sign in to comment.