From 8774c5799006a7401493b0306a15aac92836bec8 Mon Sep 17 00:00:00 2001 From: Sai Prakash Date: Thu, 16 Jul 2026 00:37:16 -0400 Subject: [PATCH 1/2] Move pnpm settings to pnpm-workspace.yaml; approve esbuild builds MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The deploy environment's pnpm no longer reads the "pnpm" field in package.json ("keys were ignored: pnpm.overrides"), so the tiptap overrides move to pnpm-workspace.yaml — their supported home — where both pnpm 10 and newer read them. Same resolution; lockfile unchanged. Also commit the esbuild build-script approval (onlyBuiltDependencies) so ERR_PNPM_IGNORED_BUILDS stops failing strict installs — esbuild arrives via tsx/vite and needs its postinstall for the platform binary. Co-Authored-By: Claude Fable 5 --- package.json | 30 ------------------------------ pnpm-workspace.yaml | 32 ++++++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+), 30 deletions(-) create mode 100644 pnpm-workspace.yaml diff --git a/package.json b/package.json index 17bdbdc..6054824 100644 --- a/package.json +++ b/package.json @@ -104,35 +104,5 @@ "tw-animate-css": "1.3.3", "typescript": "5.7.3", "vitest": "^4.1.8" - }, - "pnpm": { - "overrides": { - "@tiptap/core": "3.27.0", - "@tiptap/extension-blockquote": "3.27.0", - "@tiptap/extension-bold": "3.27.0", - "@tiptap/extension-bubble-menu": "3.27.0", - "@tiptap/extension-bullet-list": "3.27.0", - "@tiptap/extension-code": "3.27.0", - "@tiptap/extension-code-block": "3.27.0", - "@tiptap/extension-document": "3.27.0", - "@tiptap/extension-dropcursor": "3.27.0", - "@tiptap/extension-floating-menu": "3.27.0", - "@tiptap/extension-gapcursor": "3.27.0", - "@tiptap/extension-hard-break": "3.27.0", - "@tiptap/extension-heading": "3.27.0", - "@tiptap/extension-horizontal-rule": "3.27.0", - "@tiptap/extension-italic": "3.27.0", - "@tiptap/extension-link": "3.27.0", - "@tiptap/extension-list": "3.27.0", - "@tiptap/extension-list-item": "3.27.0", - "@tiptap/extension-list-keymap": "3.27.0", - "@tiptap/extension-ordered-list": "3.27.0", - "@tiptap/extension-paragraph": "3.27.0", - "@tiptap/extension-strike": "3.27.0", - "@tiptap/extension-text": "3.27.0", - "@tiptap/extension-underline": "3.27.0", - "@tiptap/extensions": "3.27.0", - "@tiptap/pm": "3.27.0" - } } } diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml new file mode 100644 index 0000000..681bdcb --- /dev/null +++ b/pnpm-workspace.yaml @@ -0,0 +1,32 @@ +# pnpm settings (package.json "pnpm" field is no longer read by pnpm) +overrides: + '@tiptap/core': 3.27.0 + '@tiptap/extension-blockquote': 3.27.0 + '@tiptap/extension-bold': 3.27.0 + '@tiptap/extension-bubble-menu': 3.27.0 + '@tiptap/extension-bullet-list': 3.27.0 + '@tiptap/extension-code': 3.27.0 + '@tiptap/extension-code-block': 3.27.0 + '@tiptap/extension-document': 3.27.0 + '@tiptap/extension-dropcursor': 3.27.0 + '@tiptap/extension-floating-menu': 3.27.0 + '@tiptap/extension-gapcursor': 3.27.0 + '@tiptap/extension-hard-break': 3.27.0 + '@tiptap/extension-heading': 3.27.0 + '@tiptap/extension-horizontal-rule': 3.27.0 + '@tiptap/extension-italic': 3.27.0 + '@tiptap/extension-link': 3.27.0 + '@tiptap/extension-list': 3.27.0 + '@tiptap/extension-list-item': 3.27.0 + '@tiptap/extension-list-keymap': 3.27.0 + '@tiptap/extension-ordered-list': 3.27.0 + '@tiptap/extension-paragraph': 3.27.0 + '@tiptap/extension-strike': 3.27.0 + '@tiptap/extension-text': 3.27.0 + '@tiptap/extension-underline': 3.27.0 + '@tiptap/extensions': 3.27.0 + '@tiptap/pm': 3.27.0 + +# esbuild (via tsx/vite dev tooling) needs its postinstall to fetch the platform binary +onlyBuiltDependencies: + - esbuild From b19ad8d5e41ff70f81af9ecbded316c675f5a179 Mon Sep 17 00:00:00 2001 From: Sai Prakash Date: Thu, 16 Jul 2026 00:41:07 -0400 Subject: [PATCH 2/2] v0.3.28 Co-Authored-By: Claude Fable 5 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 6054824..3beccfc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "codeplans", - "version": "0.3.27", + "version": "0.3.28", "description": "Manage and track coordinated changes across your software architecture.", "author": "Sai Prakash ", "homepage": "https://codeplans.ai",