From b65abbd07df07f6fd875d7102b857e04f93b1f14 Mon Sep 17 00:00:00 2001 From: will Farrell Date: Sat, 18 Apr 2026 08:32:36 -0600 Subject: [PATCH] fix: use 'husky || true' in prepare script to allow npm ci to succeed without husky installed --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f489dd4..e9aa085 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ }, "engineStrict": true, "scripts": { - "prepare": "husky", + "prepare": "husky || true", "git:pre-commit": "npm run git:lint-staged && npm run git:test-staged", "git:commit-msg": "commitlint --config commitlint.config.cjs --edit", "git:lint-staged": "npm run test:lint",