docs/local-dev: fix docs for new

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2023-03-10 13:36:00 +01:00
parent 5b975591ef
commit 862267c646
+3 -4
View File
@@ -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"
}
}
```