From 5978fab46ea2b56f7ec22c7f84cd044f5bbe2160 Mon Sep 17 00:00:00 2001 From: Patrik Oldsberg Date: Fri, 6 Mar 2020 10:36:19 +0100 Subject: [PATCH] README: update plugin instructions to not always run yarn --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b96d697204..2ac183e730 100644 --- a/README.md +++ b/README.md @@ -58,10 +58,10 @@ The final `yarn start` command should open a local instance of Backstage in your ### Creating a Plugin -To create a new plugin, run the following: +To create a new plugin, make sure you're run `yarn` to install dependencies, then run the following: ```bash -$ yarn && yarn create-plugin +$ yarn create-plugin ``` This will prompt you to enter an ID for your plugin, and then create your plugin inside the `packages/plugins/` directory. The plugin will be automatically included in the app by modifing the app's `package.json` and `src/plugins.ts`.