Skip to content

Commit 196aa36

Browse files
committed
feat: rename yarn to pnpm in readme and upper from
1 parent 1e040c4 commit 196aa36

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@ The `-d` option detaches the process to the background.
5757
Install the required dependencies with:
5858

5959
```bash
60-
yarn install
60+
pnpm install
6161
```
62-
- **NOTE**: The `devDependencies` are required to build the project. If running on a production machine where `NODE_ENV=production`, use `yarn install --prod=false`
62+
- **NOTE**: The `devDependencies` are required to build the project. If running on a production machine where `NODE_ENV=production`, use `pnpm install --prod=false`
6363

6464
Initiate a Redis database with:
6565
```bash
@@ -69,7 +69,7 @@ docker container run -p 6379:6379 redis
6969

7070
Build and start the Relayer with:
7171
```bash
72-
yarn start
72+
pnpm start
7373
```
7474

7575
For further insight into the requirements for running the Relayer see the `docker-compose.yaml` file.

dockerfile.relayer

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ COPY package.json pnpm-lock.yaml tsconfig*.json ./
77
RUN corepack enable
88

99
# Install depends
10-
from base AS prod-deps
10+
FROM base AS prod-deps
1111
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --prod --frozen-lockfile --ignore-scripts
1212

1313
FROM base AS build

0 commit comments

Comments
 (0)