From d2c875bbde2e53bea021e5e17be23992650f282a Mon Sep 17 00:00:00 2001 From: Patrick Mulligan Date: Tue, 28 Jul 2026 18:20:59 +0200 Subject: [PATCH] fix(pnpm): approve vue-demi build script so dev/build run The shipped pnpm-workspace.yaml had a placeholder stub that failed pnpm 11's ignored-builds gate, breaking `pnpm dev` and `pnpm build`. Approve vue-demi's postinstall via allowBuilds. Co-Authored-By: Claude Opus 4.8 (1M context) --- pnpm-workspace.yaml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 pnpm-workspace.yaml diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml new file mode 100644 index 0000000..dbc8714 --- /dev/null +++ b/pnpm-workspace.yaml @@ -0,0 +1,5 @@ +# Approve dependencies allowed to run install scripts (pnpm 11). +# vue-demi's postinstall selects its Vue 2/3 entrypoint; without this, +# `pnpm dev` / `pnpm build` fail the pre-run ignored-builds check. +allowBuilds: + vue-demi: true