move cwd as the first argument to yarn
Signed-off-by: Fredrik Adelöw <freben@gmail.com>
This commit is contained in:
@@ -8,7 +8,7 @@ Install the package via Yarn:
|
||||
|
||||
```bash
|
||||
# From your Backstage root directory
|
||||
yarn add --cwd packages/app @backstage/app-defaults
|
||||
yarn --cwd packages/app add @backstage/app-defaults
|
||||
```
|
||||
|
||||
## Documentation
|
||||
|
||||
@@ -8,7 +8,7 @@ Add the library to your backend app package:
|
||||
|
||||
```bash
|
||||
# From your Backstage root directory
|
||||
yarn add --cwd packages/backend @backstage/backend-app-api
|
||||
yarn --cwd packages/backend add @backstage/backend-app-api
|
||||
```
|
||||
|
||||
## Documentation
|
||||
|
||||
@@ -9,7 +9,7 @@ Add the library to your backend package:
|
||||
|
||||
```bash
|
||||
# From your Backstage root directory
|
||||
yarn add --cwd packages/backend @backstage/backend-common
|
||||
yarn --cwd packages/backend add @backstage/backend-common
|
||||
```
|
||||
|
||||
then make use of the handlers and logger as necessary:
|
||||
|
||||
@@ -8,7 +8,7 @@ Add the library to your backend app package:
|
||||
|
||||
```bash
|
||||
# From your Backstage root directory
|
||||
yarn add --cwd packages/backend @backstage/backend-defaults
|
||||
yarn --cwd packages/backend add @backstage/backend-defaults
|
||||
```
|
||||
|
||||
## Documentation
|
||||
|
||||
@@ -8,7 +8,7 @@ Add the library to your backend plugin or module package:
|
||||
|
||||
```bash
|
||||
# From your Backstage root directory
|
||||
yarn add --cwd plugins/<plugin>-backend @backstage/backend-dev-utils
|
||||
yarn --cwd plugins/<plugin>-backend add @backstage/backend-dev-utils
|
||||
```
|
||||
|
||||
## Documentation
|
||||
|
||||
@@ -8,7 +8,7 @@ Add the library to your backend plugin or module package:
|
||||
|
||||
```bash
|
||||
# From your Backstage root directory
|
||||
yarn add --cwd plugins/<plugin>-backend @backstage/backend-plugin-api
|
||||
yarn --cwd plugins/<plugin>-backend add @backstage/backend-plugin-api
|
||||
```
|
||||
|
||||
## Documentation
|
||||
|
||||
@@ -8,7 +8,7 @@ Add the library to your backend package:
|
||||
|
||||
```bash
|
||||
# From your Backstage root directory
|
||||
yarn add --cwd packages/backend @backstage/backend-tasks
|
||||
yarn --cwd packages/backend add @backstage/backend-tasks
|
||||
```
|
||||
|
||||
then make use of its facilities as necessary:
|
||||
|
||||
@@ -7,7 +7,7 @@ This package provides the core API used by Backstage apps.
|
||||
Install the package via Yarn:
|
||||
|
||||
```bash
|
||||
yarn add --cwd packages/app @backstage/core-app-api
|
||||
yarn --cwd packages/app add @backstage/core-app-api
|
||||
```
|
||||
|
||||
## Documentation
|
||||
|
||||
Reference in New Issue
Block a user