From b0abfd523c40559f66eca7e1bc92cca801fb8451 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 11 May 2026 15:14:03 +0200 Subject: [PATCH] chore(deps): update pnpm to v11 (#1850) MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit * chore(deps): update pnpm to v11 * fix: migrate pnpm settings from package.json to pnpm-workspace.yaml pnpm 11 no longer reads the 'pnpm' field from package.json. Move patchedDependencies and allowBuilds to pnpm-workspace.yaml. Remove dead pnpm field from package.json. --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Jérôme Benoit --- package.json | 12 ++---------- pnpm-lock.yaml | 4 +--- pnpm-workspace.yaml | 12 ++++++++++++ ui/cli/package.json | 4 ++-- ui/common/package.json | 4 ++-- ui/web/package.json | 4 ++-- 6 files changed, 21 insertions(+), 19 deletions(-) diff --git a/package.json b/package.json index ac5718a1..4720b3ec 100644 --- a/package.json +++ b/package.json @@ -8,9 +8,9 @@ }, "volta": { "node": "24.15.0", - "pnpm": "10.33.4" + "pnpm": "11.0.9" }, - "packageManager": "pnpm@10.33.4", + "packageManager": "pnpm@11.0.9", "repository": { "type": "git", "url": "https://github.com/sap/e-mobility-charging-stations-simulator.git" @@ -132,13 +132,5 @@ "tsx": "^4.21.0", "typescript": "~6.0.3", "vue-eslint-parser": "^10.4.0" - }, - "pnpm": { - "onlyBuiltDependencies": [ - "better-sqlite3" - ], - "patchedDependencies": { - "@ai-hero/sandcastle": "patches/@ai-hero__sandcastle.patch" - } } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 0a8de268..ba99b423 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -26,9 +26,7 @@ overrides: uuid@<7: '>=7.0.0' patchedDependencies: - '@ai-hero/sandcastle': - hash: 98ac71a9a8d3bc7df881ffb9c3a698ac315e90f9c507c5d8c356868e3e35a4d5 - path: patches/@ai-hero__sandcastle.patch + '@ai-hero/sandcastle': 98ac71a9a8d3bc7df881ffb9c3a698ac315e90f9c507c5d8c356868e3e35a4d5 importers: diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 49db3db2..03562e3b 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -4,6 +4,15 @@ packages: - ./ui/cli - ./ui/web +allowBuilds: + '@parcel/watcher': set this to true or false + better-sqlite3: true + bufferutil: set this to true or false + es5-ext: set this to true or false + esbuild: set this to true or false + msgpackr-extract: set this to true or false + utf-8-validate: set this to true or false + overrides: bn.js@<5.2.3: '>=5.2.3' brace-expansion@<1.1.13: '>=1.1.13' @@ -24,3 +33,6 @@ overrides: tmp@<=0.2.3: '>=0.2.4' tough-cookie@<4.1.3: '>=4.1.3' uuid@<7: '>=7.0.0' + +patchedDependencies: + '@ai-hero/sandcastle': patches/@ai-hero__sandcastle.patch diff --git a/ui/cli/package.json b/ui/cli/package.json index e0883a02..eddbc580 100644 --- a/ui/cli/package.json +++ b/ui/cli/package.json @@ -8,9 +8,9 @@ }, "volta": { "node": "24.15.0", - "pnpm": "10.33.4" + "pnpm": "11.0.9" }, - "packageManager": "pnpm@10.33.4", + "packageManager": "pnpm@11.0.9", "type": "module", "bin": { "evse-cli": "./dist/cli.js" diff --git a/ui/common/package.json b/ui/common/package.json index 4bb7473d..9d6f8d9a 100644 --- a/ui/common/package.json +++ b/ui/common/package.json @@ -8,9 +8,9 @@ }, "volta": { "node": "24.15.0", - "pnpm": "10.33.4" + "pnpm": "11.0.9" }, - "packageManager": "pnpm@10.33.4", + "packageManager": "pnpm@11.0.9", "type": "module", "exports": "./src/index.ts", "scripts": { diff --git a/ui/web/package.json b/ui/web/package.json index 90d33151..e8f1e1c0 100644 --- a/ui/web/package.json +++ b/ui/web/package.json @@ -9,9 +9,9 @@ }, "volta": { "node": "24.15.0", - "pnpm": "10.33.4" + "pnpm": "11.0.9" }, - "packageManager": "pnpm@10.33.4", + "packageManager": "pnpm@11.0.9", "type": "module", "scripts": { "build": "vite build", -- 2.43.0