From 179139aa311aadd57c41988ee58df4611bf37822 Mon Sep 17 00:00:00 2001 From: Katalina Okano Date: Sat, 19 Dec 2020 20:34:18 -0500 Subject: [PATCH] chore: update husky to v5 (again) --- .husky/.gitignore | 1 + package.json | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) create mode 100644 .husky/.gitignore diff --git a/.husky/.gitignore b/.husky/.gitignore new file mode 100644 index 0000000..31354ec --- /dev/null +++ b/.husky/.gitignore @@ -0,0 +1 @@ +_ diff --git a/package.json b/package.json index 641a339..075a2a5 100644 --- a/package.json +++ b/package.json @@ -21,14 +21,14 @@ "lint:terraform": "terraform fmt -recursive -check ./terraform", "lint:types": "tsc --noEmit", "now-build": "run-s storybook:build", + "postinstall": "husky install", "storybook": "start-storybook -p 6006", "storybook:build": "build-storybook", "test": "jest", "ui": "next dev -p 6601", "ui:build": "next build", "ui:prod": "cross-env next start -p ${PORT:-3000}", - "worker": "node src/backend-emulator/main.js", - "postinstall": "husky install" + "worker": "node src/backend-emulator/main.js" }, "dependencies": { "chroma-js": "^2.1.0", @@ -137,4 +137,4 @@ "prettier --write" ] } -} \ No newline at end of file +}