From 458f7065e4458e04c046aea293aa668535a6a700 Mon Sep 17 00:00:00 2001 From: Evan Hahn Date: Wed, 6 Nov 2024 15:32:33 +0000 Subject: [PATCH] chore: add `watch:test:node` npm script --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 8f50392..b64d42c 100644 --- a/package.json +++ b/package.json @@ -25,7 +25,8 @@ "test:typescript": "tsc --project ./tsconfig.dev.json", "test:node": "node --test", "test": "npm-run-all --aggregate-output --print-label --parallel test:*", - "watch:typescript": "tsc --watch --project ./tsconfig.dev.json", + "watch:test:typescript": "tsc --watch --project ./tsconfig.dev.json", + "watch:test:node": "npm run test:node -- --watch", "prepare": "husky || true", "prepack": "npm run build" },