Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update pnpm to v8.8.0 #756

Merged
merged 2 commits into from
Sep 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker/dev/local-http-signatures/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN apt install -y curl xz-utils python3 build-essential

# version in curl is not the version used. Dependent on the last command
RUN corepack enable
RUN corepack prepare pnpm@8.7.5 --activate
RUN corepack prepare pnpm@8.8.0 --activate

# pnpm fetch does require only lockfile
COPY pnpm-lock.yaml ./
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@
"typescript": "^5.0.4"
},
"engines": {
"pnpm": "^8.7.5",
"pnpm": "^8.8.0",
"npm": "pnpm",
"yarn": "pnpm",
"node": "^18.14.0"
},
"private": true,
"packageManager": "pnpm@8.7.5"
"packageManager": "pnpm@8.8.0"
}
2 changes: 1 addition & 1 deletion packages/boutique/backend/Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ WORKDIR /home/testnet

# Install PNPM
RUN corepack enable
RUN corepack prepare pnpm@8.7.5 --activate
RUN corepack prepare pnpm@8.8.0 --activate

# Copy lockfile, NVM and NPM configuration to the working directory
COPY pnpm-lock.yaml .nvmrc .npmrc ./
Expand Down
2 changes: 1 addition & 1 deletion packages/boutique/backend/Dockerfile.prod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM node:18-alpine AS base
WORKDIR /testnet

RUN corepack enable
RUN corepack prepare pnpm@8.7.5 --activate
RUN corepack prepare pnpm@8.8.0 --activate
RUN apk add --no-cache \
libc6-compat \
python3 \
Expand Down
4 changes: 2 additions & 2 deletions packages/boutique/frontend/Dockerfile.prod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM node:18-alpine AS base
WORKDIR /testnet

RUN corepack enable
RUN corepack prepare pnpm@8.7.5 --activate
RUN corepack prepare pnpm@8.8.0 --activate

RUN apk add --no-cache \
libc6-compat \
Expand Down Expand Up @@ -41,4 +41,4 @@ COPY packages/boutique/frontend/nginx/nginx.conf /etc/nginx/conf.d/default.conf

EXPOSE ${PORT}

CMD ["nginx", "-g", "daemon off;"]
CMD ["nginx", "-g", "daemon off;"]
2 changes: 1 addition & 1 deletion packages/wallet/backend/Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ WORKDIR /home/testnet

# Install PNPM
RUN corepack enable
RUN corepack prepare pnpm@8.7.5 --activate
RUN corepack prepare pnpm@8.8.0 --activate

# Copy lockfile, NVM and NPM configuration to the working directory
COPY pnpm-lock.yaml .nvmrc .npmrc ./
Expand Down
2 changes: 1 addition & 1 deletion packages/wallet/backend/Dockerfile.prod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM node:18-alpine AS base
WORKDIR /testnet

RUN corepack enable
RUN corepack prepare pnpm@8.7.5 --activate
RUN corepack prepare pnpm@8.8.0 --activate
RUN apk add --no-cache \
libc6-compat \
python3 \
Expand Down
2 changes: 1 addition & 1 deletion packages/wallet/frontend/Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ RUN apt-get update && \

# Install PNPM
RUN corepack enable
RUN corepack prepare pnpm@8.7.5 --activate
RUN corepack prepare pnpm@8.8.0 --activate

# Copy lockfile, NVM and NPM configuration to the working directory
COPY pnpm-lock.yaml .nvmrc .npmrc ./
Expand Down
2 changes: 1 addition & 1 deletion packages/wallet/frontend/Dockerfile.prod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM node:18-alpine AS base
WORKDIR /testnet

RUN corepack enable
RUN corepack prepare pnpm@8.7.5 --activate
RUN corepack prepare pnpm@8.8.0 --activate

RUN apk add --no-cache \
libc6-compat \
Expand Down