From 139049de97bf3cf60b0d6276d4b39970d608523c Mon Sep 17 00:00:00 2001 From: JoeyDoey Date: Sun, 24 Nov 2024 19:36:56 -0800 Subject: [PATCH] feat(husky): update prepare to husky || true instead of install --- examples/devtools-react-ts/package.json | 2 +- examples/overlay-react-ts/package.json | 2 +- examples/popup-react-ts/package.json | 2 +- examples/sidepanel-react-ts/package.json | 2 +- package.json | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/devtools-react-ts/package.json b/examples/devtools-react-ts/package.json index dd3b12a2..a4fb50aa 100644 --- a/examples/devtools-react-ts/package.json +++ b/examples/devtools-react-ts/package.json @@ -23,7 +23,7 @@ "commit": "lint-staged && cz", "zip": "bedframe zip", "convert:safari": "xcrun safari-web-extension-converter dist/safari --project-location . --app-name $npm_package_name-safari", - "postinstall": "husky install" + "prepare": "husky || true" }, "dependencies": { "react": "^18.3.1", diff --git a/examples/overlay-react-ts/package.json b/examples/overlay-react-ts/package.json index 9c22592e..aef7177c 100644 --- a/examples/overlay-react-ts/package.json +++ b/examples/overlay-react-ts/package.json @@ -23,7 +23,7 @@ "commit": "lint-staged && cz", "zip": "bedframe zip", "convert:safari": "xcrun safari-web-extension-converter dist/safari --project-location . --app-name $npm_package_name-safari", - "postinstall": "husky install" + "prepare": "husky || true" }, "dependencies": { "react": "^18.3.1", diff --git a/examples/popup-react-ts/package.json b/examples/popup-react-ts/package.json index cb541299..be958b0b 100644 --- a/examples/popup-react-ts/package.json +++ b/examples/popup-react-ts/package.json @@ -23,7 +23,7 @@ "commit": "lint-staged && cz", "zip": "bedframe zip", "convert:safari": "xcrun safari-web-extension-converter dist/safari --project-location . --app-name $npm_package_name-safari", - "postinstall": "husky install" + "prepare": "husky || true" }, "dependencies": { "react": "^18.3.1", diff --git a/examples/sidepanel-react-ts/package.json b/examples/sidepanel-react-ts/package.json index cfcc8b7d..588843f8 100644 --- a/examples/sidepanel-react-ts/package.json +++ b/examples/sidepanel-react-ts/package.json @@ -23,7 +23,7 @@ "commit": "lint-staged && cz", "zip": "bedframe zip", "convert:safari": "xcrun safari-web-extension-converter dist/safari --project-location . --app-name $npm_package_name-safari", - "postinstall": "husky install" + "prepare": "husky || true" }, "dependencies": { "react": "^18.3.1", diff --git a/package.json b/package.json index 48882006..64c91f1d 100644 --- a/package.json +++ b/package.json @@ -22,7 +22,7 @@ "cz": "cz", "prerelease": "turbo telemetry disable && turbo run format lint build", "release": "turbo telemetry disable && turbo run format lint build && changeset version && changeset publish", - "prepare": "husky install" + "prepare": "husky || true" }, "devDependencies": { "@changesets/cli": "^2.27.10",