From 4f59621da277b671a3926a5b3d4d2ac4d15b19e9 Mon Sep 17 00:00:00 2001 From: Ramona Date: Mon, 8 Apr 2019 10:46:39 +0200 Subject: [PATCH] Fix typo in plugin-dev.md tiny typo fix for [Vue UI integration](#ui-integration) --- docs/dev-guide/plugin-dev.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/dev-guide/plugin-dev.md b/docs/dev-guide/plugin-dev.md index 164b82bc1b..b6ac880eca 100644 --- a/docs/dev-guide/plugin-dev.md +++ b/docs/dev-guide/plugin-dev.md @@ -18,7 +18,7 @@ A CLI plugin is an npm package that can add additional features to the project u Don't overuse vue-cli plugins! If you want just to include a certain dependency, e.g. [Lodash](https://lodash.com/) - it's easier to do it manually with npm than create a specific plugin only to do so. ::: -CLI Plugin should always contain a [Service Plugin](#service-plugin) as its main export, and can optionally contain a [Generator](#generator), a [Prompt File](#prompts) and a [Vue UI integration](#ui-integrtion). +CLI Plugin should always contain a [Service Plugin](#service-plugin) as its main export, and can optionally contain a [Generator](#generator), a [Prompt File](#prompts) and a [Vue UI integration](#ui-integration). As an npm package, CLI plugin must have a `package.json` file. It's also recommended to have a plugin description in `README.md` to help others find your plugin on npm.