Skip to content

Commit 7af76e1

Browse files
authored
chore: set pnpm version to 10.13.1 everywhere (#10)
1 parent 5000adf commit 7af76e1

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Setup pnpm
2222
uses: pnpm/action-setup@v4
2323
with:
24-
version: 10
24+
version: 10.13.1
2525

2626
- name: Setup Node.js
2727
uses: actions/setup-node@v4

Dockerfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,9 @@ FROM node:22-alpine AS build
66
# Set working directory
77
WORKDIR /app
88

9-
# Install pnpm version 10
109
# Enable corepack and activate pnpm
1110
RUN corepack enable
12-
RUN corepack prepare pnpm@10 --activate
11+
RUN corepack prepare pnpm@10.13.1 --activate
1312

1413
# Copy package.json and pnpm-lock.yaml
1514
COPY package.json pnpm-lock.yaml ./
@@ -34,7 +33,7 @@ WORKDIR /app
3433

3534
# Enable corepack and activate pnpm in production stage
3635
RUN corepack enable
37-
RUN corepack prepare pnpm@10 --activate
36+
RUN corepack prepare pnpm@10.13.1 --activate
3837

3938
# Copy the built output from the build stage
4039
COPY --from=build /app/.output ./.output

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
],
4040
"engines": {
4141
"node": "~22",
42-
"pnpm": "~10"
42+
"pnpm": "~10.13.1"
4343
},
4444
"scripts": {
4545
"build": "nuxt build",

0 commit comments

Comments
 (0)