From b5a03cc69381d95291780ca64491601cbcaef135 Mon Sep 17 00:00:00 2001 From: bdbch Date: Sat, 8 Aug 2026 15:43:02 +0200 Subject: [PATCH] chore(scripts): add root build and test commands Exclude the playground from root builds and run tests through vp. --- package.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 6220f9e..318bd21 100644 --- a/package.json +++ b/package.json @@ -4,8 +4,10 @@ "private": true, "type": "module", "scripts": { - "ready": "vp check && vp run -r test && vp run -r build", + "ready": "vp check && vp run -r 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