generated from ubiquity/ts-template
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: update Husky setup for production and CI
Add script to skip Husky install in production and CI. Adjust workflow and package.json.
- Loading branch information
1 parent
ca08e9f
commit 9a76d37
Showing
4 changed files
with
12 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// Skip Husky install in production and CI | ||
// https://typicode.github.io/husky/how-to.html#ci-server-and-docker | ||
if (process.env.NODE_ENV === "production" || process.env.CI === "true") { | ||
console.log("Skipping Husky install because of production environment."); | ||
process.exit(0); | ||
} | ||
const husky = (await import("husky")).default; | ||
console.log(husky()); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters