From 191bbf162b41c39bde138d08e4faa96cf99e2965 Mon Sep 17 00:00:00 2001 From: Aviv Keller Date: Fri, 10 Oct 2025 17:26:55 -0400 Subject: [PATCH] fix(package.json): don't fail on husky --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index bd718fc5..51904dc9 100644 --- a/package.json +++ b/package.json @@ -15,7 +15,7 @@ "test:ci": "c8 --reporter=lcov node --test --experimental-test-module-mocks --test-reporter=@reporters/github --test-reporter-destination=stdout --test-reporter=junit --test-reporter-destination=junit.xml --test-reporter=spec --test-reporter-destination=stdout", "test:update-snapshots": "node --test --experimental-test-module-mocks --test-update-snapshots", "test:watch": "node --test --experimental-test-module-mocks --watch", - "prepare": "husky", + "prepare": "husky || exit 0", "run": "node bin/cli.mjs", "watch": "node --watch bin/cli.mjs" },