From 8053ddec9e3d6131306277e9692bfec72c9213c9 Mon Sep 17 00:00:00 2001 From: Tyler Benfield Date: Fri, 12 Jun 2026 13:33:29 -0400 Subject: [PATCH 1/3] chore: migrate pnpm config to v11 --- examples/hello-world/package.json | 2 +- examples/next-smoke/package.json | 7 +------ examples/next-smoke/pnpm-workspace.yaml | 3 +++ package.json | 2 +- 4 files changed, 6 insertions(+), 8 deletions(-) diff --git a/examples/hello-world/package.json b/examples/hello-world/package.json index ae1aeee..0c0e27a 100644 --- a/examples/hello-world/package.json +++ b/examples/hello-world/package.json @@ -3,7 +3,7 @@ "version": "0.1.0", "private": true, "main": "server.ts", - "packageManager": "pnpm@10.30.0", + "packageManager": "pnpm@11.6.0", "scripts": { "dev": "bun --watch server.ts", "start": "bun run server.ts", diff --git a/examples/next-smoke/package.json b/examples/next-smoke/package.json index 7c0f18b..e06de96 100644 --- a/examples/next-smoke/package.json +++ b/examples/next-smoke/package.json @@ -2,7 +2,7 @@ "name": "next-smoke", "version": "0.1.0", "private": true, - "packageManager": "pnpm@10.30.0", + "packageManager": "pnpm@11.6.0", "scripts": { "dev": "next dev", "build": "next build", @@ -14,11 +14,6 @@ "react": "19.2.6", "react-dom": "19.2.6" }, - "pnpm": { - "overrides": { - "postcss": "8.5.10" - } - }, "devDependencies": { "@types/node": "^20.19.41", "@types/react": "^19.2.15", diff --git a/examples/next-smoke/pnpm-workspace.yaml b/examples/next-smoke/pnpm-workspace.yaml index ccbac80..2273610 100644 --- a/examples/next-smoke/pnpm-workspace.yaml +++ b/examples/next-smoke/pnpm-workspace.yaml @@ -1,2 +1,5 @@ packages: - "." + +overrides: + postcss: 8.5.10 diff --git a/package.json b/package.json index e61e9c5..edadb6d 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "engines": { "node": ">=22.12.0" }, - "packageManager": "pnpm@10.30.0", + "packageManager": "pnpm@11.6.0", "scripts": { "build:cli": "pnpm --filter @prisma/cli build", "build:compute": "pnpm --filter @prisma/compute build", From ea3b6ff45a08a27198ce35a37a8f6d2fdd3d1b19 Mon Sep 17 00:00:00 2001 From: Tyler Benfield Date: Fri, 12 Jun 2026 13:44:33 -0400 Subject: [PATCH 2/3] chore: update Node 22 pin for pnpm 11 --- .node-version | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.node-version b/.node-version index 1d9b783..941d7c0 100644 --- a/.node-version +++ b/.node-version @@ -1 +1 @@ -22.12.0 +22.22.3 diff --git a/package.json b/package.json index edadb6d..c20110d 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "prisma-cli", "private": true, "engines": { - "node": ">=22.12.0" + "node": ">=22.13.0" }, "packageManager": "pnpm@11.6.0", "scripts": { From 8b3e839531e93f6212a07a2e9679f205b649f6ce Mon Sep 17 00:00:00 2001 From: Tyler Benfield Date: Fri, 12 Jun 2026 13:52:54 -0400 Subject: [PATCH 3/3] chore: approve esbuild build scripts --- examples/hello-world/pnpm-workspace.yaml | 3 +++ examples/next-smoke/pnpm-workspace.yaml | 3 +++ pnpm-workspace.yaml | 3 +++ 3 files changed, 9 insertions(+) diff --git a/examples/hello-world/pnpm-workspace.yaml b/examples/hello-world/pnpm-workspace.yaml index ccbac80..9af1dfc 100644 --- a/examples/hello-world/pnpm-workspace.yaml +++ b/examples/hello-world/pnpm-workspace.yaml @@ -1,2 +1,5 @@ packages: - "." + +allowBuilds: + esbuild: true diff --git a/examples/next-smoke/pnpm-workspace.yaml b/examples/next-smoke/pnpm-workspace.yaml index 2273610..0febdbb 100644 --- a/examples/next-smoke/pnpm-workspace.yaml +++ b/examples/next-smoke/pnpm-workspace.yaml @@ -1,5 +1,8 @@ packages: - "." +allowBuilds: + esbuild: true + overrides: postcss: 8.5.10 diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 924b55f..e74763e 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -1,2 +1,5 @@ packages: - packages/* + +allowBuilds: + esbuild: true