move cwd as the first argument to yarn

Signed-off-by: Fredrik Adelöw <freben@gmail.com>
This commit is contained in:
Fredrik Adelöw
2024-02-04 20:10:44 +01:00
parent d3a9cd3afa
commit 9aac2b0d36
134 changed files with 269 additions and 161 deletions
+1 -1
View File
@@ -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
+1 -1
View File
@@ -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
+1 -1
View File
@@ -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:
+1 -1
View File
@@ -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
+1 -1
View File
@@ -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
+1 -1
View File
@@ -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
+1 -1
View File
@@ -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:
+1 -1
View File
@@ -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