From cc315cc5b5436c46778823dfd2010501b53dafc3 Mon Sep 17 00:00:00 2001 From: bdbch Date: Sat, 8 Aug 2026 15:49:47 +0200 Subject: [PATCH] chore: simplify ready test command Run `vp test` directly and remove the redundant test script. --- package.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/package.json b/package.json index 318bd21..b53a584 100644 --- a/package.json +++ b/package.json @@ -4,10 +4,9 @@ "private": true, "type": "module", "scripts": { - "ready": "vp check && vp run -r test && vp run build", + "ready": "vp check && vp test && vp run build", "dev": "vp run playground#dev", "build": "vp run --filter \"!@inkwell/playground\" --filter \"@inkwell/*\" build", - "test": "vp test", "prepare": "vp config" }, "devDependencies": { -- 2.51.2