Skip to content

Commit 35fb491

Browse files
committed
Update pnpm. Flag Dockerfile for renovate pnpm updates
1 parent b51cbf0 commit 35fb491

4 files changed

Lines changed: 12 additions & 4 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ FROM node:26-trixie-slim AS build
44

55
ENV CI=true
66

7-
RUN npm install -g pnpm@11.0.9
7+
RUN npm install -g pnpm@11.1.0
88

99
WORKDIR /app
1010

mise.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[tools]
22
node = "26.1.0"
3-
pnpm = "11.0.9"
3+
pnpm = "11.1.0"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,5 @@
4040
"lint-staged": {
4141
"*.{js,ts,vue}": "pnpm lint:fix"
4242
},
43-
"packageManager": "pnpm@11.0.9"
43+
"packageManager": "pnpm@11.1.0"
4444
}

renovate.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
{
22
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
33
"extends": ["config:recommended"],
4-
"ignoreDeps": ["javaBin/platform"]
4+
"ignoreDeps": ["javaBin/platform"],
5+
"regexManagers": [
6+
{
7+
"fileMatch": ["Dockerfile"],
8+
"matchStrings": ["npm install -g pnpm@(?<currentValue>[\\d.]+)"],
9+
"depNameTemplate": "pnpm",
10+
"datasourceTemplate": "npm"
11+
}
12+
]
513
}

0 commit comments

Comments
 (0)