From d1488bc77f2cc44182fb444073326ccc715103b0 Mon Sep 17 00:00:00 2001 From: dkundel Date: Fri, 13 Sep 2019 14:02:09 -0700 Subject: [PATCH] chore(hooks): run npm install in post-commit --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index fe79f74f..21dde474 100644 --- a/package.json +++ b/package.json @@ -32,7 +32,7 @@ "husky": { "skipCI": true, "hooks": { - "post-commit": "npm prune --production && git add node_modules/* && git commit -m \"chore: update node_modules\"" + "post-commit": "npm prune --production && git add node_modules/* && git commit -m \"chore: update node_modules\" && npm install" } } }