From 876ba73d93239abcb9bc5dbcdab3bb61e7b69668 Mon Sep 17 00:00:00 2001 From: Anselm Eickhoff Date: Thu, 22 Aug 2024 14:01:02 +0100 Subject: [PATCH] Use 'prepare' for husky instead of 'postinstall' Fixes https://github.com/slikts/queueable/issues/838 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b97c0efe..db539977 100644 --- a/package.json +++ b/package.json @@ -43,7 +43,7 @@ "test": "jest", "test:watch": "jest --watch --runInBand --verbose false", "report-coverage": "cat ./coverage/lcov.info | coveralls", - "postinstall": "husky install", + "prepare": "husky install", "prepack": "pinst --disable", "postpack": "pinst --enable" },