From f65611b2871125062c7963d1b68bf62011bf1129 Mon Sep 17 00:00:00 2001 From: weishu Date: Thu, 25 Dec 2025 11:12:29 +0800 Subject: [PATCH] chore: run tools:unpack before tests --- cli/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/package.json b/cli/package.json index 93cc26d5..4607a476 100644 --- a/cli/package.json +++ b/cli/package.json @@ -43,7 +43,7 @@ "publish-npm:dry-run": "bun run scripts/publish-npm.ts --dry-run", "tools:unpack": "bun run scripts/unpack-tools.ts", "update-homebrew-formula": "bun run scripts/update-homebrew-formula.ts", - "test": "vitest run", + "test": "bun run tools:unpack && vitest run", "test:win": "vitest run", "dev": "tsx src/index.ts", "dev:local-server": "tsx --env-file .env.dev-local-server src/index.ts",