From 975902af9ba2424033d4a3023be2bab99b0adf86 Mon Sep 17 00:00:00 2001 From: Philip Chmalts Date: Thu, 27 Aug 2026 15:49:52 -0700 Subject: [PATCH] fix: Update wizard to 0.42.0 The optional dependency was pinned at `^0.38.1`. Because npm's caret operator only permits patch-level changes below 1.0.0, that range resolves to `>=0.38.1 <0.39.0`, so `npx @seamapi/cli wizard` installed a wizard four minor versions behind the published 0.42.0. Lockfile regenerated with the pinned npm@11.19.0 so the wizard's optional peer subtree (ink, react, and their peers) is preserved. Co-Authored-By: Claude Opus 5 (1M context) --- package-lock.json | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index f0141818..dd71d07f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -52,7 +52,7 @@ "npm": ">=10.0.0" }, "optionalDependencies": { - "@seamapi/wizard": "^0.38.1" + "@seamapi/wizard": "^0.42.0" } }, "node_modules/@alcalzone/ansi-tokenize": { @@ -3750,9 +3750,9 @@ } }, "node_modules/@seamapi/wizard": { - "version": "0.38.1", - "resolved": "https://registry.npmjs.org/@seamapi/wizard/-/wizard-0.38.1.tgz", - "integrity": "sha512-XmevgpJmiSHGrBLV0Hiz2/87VmVZKXSkL5vO4OqK9v6QrdxzJE7WwEJ8GdM7ZKYeI0o78L/dJbJKLd1Lm5bRrg==", + "version": "0.42.0", + "resolved": "https://registry.npmjs.org/@seamapi/wizard/-/wizard-0.42.0.tgz", + "integrity": "sha512-RIF1oTMowC/E5LfffZ/49Wiiw5wF1TjT4NmEF3HRz1Q1JhWL4/vAEtmRJFQr9OlnW2wKIZ0V7lKz6/EAX4N97g==", "license": "MIT", "optional": true, "dependencies": { diff --git a/package.json b/package.json index 6cf7e1a6..2167436c 100644 --- a/package.json +++ b/package.json @@ -90,7 +90,7 @@ }, "packageManager": "npm@11.19.0", "optionalDependencies": { - "@seamapi/wizard": "^0.38.1" + "@seamapi/wizard": "^0.42.0" }, "dependencies": { "@clack/prompts": "^1.7.0",