From 862267c646827870e88b8632f27ddbf260fbcb0e Mon Sep 17 00:00:00 2001 From: Patrik Oldsberg Date: Fri, 10 Mar 2023 13:36:00 +0100 Subject: [PATCH] docs/local-dev: fix docs for `new` Signed-off-by: Patrik Oldsberg --- docs/local-dev/cli-commands.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/docs/local-dev/cli-commands.md b/docs/local-dev/cli-commands.md index 174fb3e348..8c1e061237 100644 --- a/docs/local-dev/cli-commands.md +++ b/docs/local-dev/cli-commands.md @@ -212,14 +212,13 @@ backstage-cli new --select plugin --option id=foo ``` This command is typically added as script in the root `package.json` to be -executed with `yarn backstage-create`, using options that are appropriate for -the organization that owns the app repo. For example you may have it set up like -this: +executed with `yarn new`, using options that are appropriate for the organization +that owns the app repo. For example you may have it set up like this: ```json { "scripts": { - "backstage-create": "backstage-cli create --scope internal --no-private --npm-registry https://acme.org/npm" + "new": "backstage-cli new --scope internal --no-private --npm-registry https://acme.org/npm" } } ```