diff --git a/package.json b/package.json index 11884a7..723e9bf 100644 --- a/package.json +++ b/package.json @@ -68,12 +68,6 @@ "typescript": "^5.9.3", "vitest": "^4.1.5" }, - "pnpm": { - "overrides": { - "@earendil-works/pi-ai": "$@earendil-works/pi-coding-agent", - "@earendil-works/pi-tui": "$@earendil-works/pi-coding-agent" - } - }, "scripts": { "typecheck": "tsc --noEmit", "lint": "biome check", @@ -88,7 +82,7 @@ "test:e2e": "vitest run --config vitest.e2e.config.ts", "release": "pnpm changeset publish" }, - "packageManager": "pnpm@10.26.1", + "packageManager": "pnpm@11.5.1", "peerDependenciesMeta": { "@earendil-works/pi-ai": { "optional": true diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml new file mode 100644 index 0000000..11a25fa --- /dev/null +++ b/pnpm-workspace.yaml @@ -0,0 +1,8 @@ +overrides: + "@earendil-works/pi-ai": "$@earendil-works/pi-coding-agent" + "@earendil-works/pi-tui": "$@earendil-works/pi-coding-agent" + +allowBuilds: + esbuild: true + protobufjs: true + "@google/genai": false diff --git a/shell.nix b/shell.nix index c63340f..f0b30ac 100644 --- a/shell.nix +++ b/shell.nix @@ -5,6 +5,6 @@ pkgs.mkShell { buildInputs = with pkgs; [ nodejs - pnpm_10 + pnpm_11 ]; }