From 9b08810a42f4771ab14fa225081beed77219e760 Mon Sep 17 00:00:00 2001 From: jdx <216188+jdx@users.noreply.github.com> Date: Sun, 22 Mar 2026 15:44:13 +0000 Subject: [PATCH] fix: use npm ci instead of npm install in pre-commit hook npm ci is faster and ensures exact lockfile versions. Co-Authored-By: Claude Opus 4.6 (1M context) --- .husky/pre-commit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.husky/pre-commit b/.husky/pre-commit index b934798..3287ce3 100755 --- a/.husky/pre-commit +++ b/.husky/pre-commit @@ -1,5 +1,5 @@ # shellcheck disable=SC1091 -npm install +npm ci npm run all git add dist