From 2f93ca1daefc8cb23599f056407db87beb4baaec Mon Sep 17 00:00:00 2001 From: Calin Teodor Date: Sun, 7 Jun 2026 02:47:30 +0300 Subject: [PATCH 1/2] fix(plugin): pin openclaw devDependency to ^2026.6.1 (PILOT-288) The wildcard "*" allowed every npm install to pull a different openclaw with 470+ transitive deps (Playwright, quickjs-wasm, pdfjs, OpenAI SDK), so each contributor / CI run risked behaving differently. Pin to the current published version with caret-major scope for maintenance bumps. From 91096cf9dc7ed3d667493bb1f2bf9e52c38193d6 Mon Sep 17 00:00:00 2001 From: Calin Teodor Date: Sun, 7 Jun 2026 02:47:47 +0300 Subject: [PATCH 2/2] fix(plugin): pin openclaw devDep ^2026.6.1 (apply edit) --- plugin/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/package.json b/plugin/package.json index d62c50c..73be6ef 100644 --- a/plugin/package.json +++ b/plugin/package.json @@ -20,7 +20,7 @@ }, "devDependencies": { "@types/node": "^22.0.0", - "openclaw": "*", + "openclaw": "^2026.6.1", "typescript": "^5.5.0", "vitest": "^2.0.0" },