From 0495a8cf9cb8d3611aa50a427da1bbf2467b057a Mon Sep 17 00:00:00 2001 From: Jason Dreyzehner Date: Fri, 21 Oct 2016 12:11:45 -0400 Subject: [PATCH] fix(package): install properly after clean-all --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index e635267af..31c9fb832 100644 --- a/package.json +++ b/package.json @@ -7,13 +7,13 @@ "scripts": { "postinstall": "npm run apply:copay && echo && echo \"Repo configured for standard Copay distribution. To switch to the BitPay distribution, run 'npm run apply:bitpay'.\" && echo", "start": "echo && echo \"Choose a distribution by running 'npm run apply:copay' or 'npm run apply:bitpay'.\" && echo", - "apply:copay": "cd app-template && node apply.js copay && cd .. && npm i && npm run postapply", - "apply:bitpay": "cd app-template && node apply.js bitpay && cd .. && npm i && npm run postapply", + "apply:copay": "npm i fs-extra@0.30 && cd app-template && node apply.js copay && cd .. && npm i", + "apply:bitpay": "npm i fs-extra@0.30 && cd app-template && node apply.js bitpay && cd .. && npm i", "unstage-package": "git reset package.json", "clean-all": "git clean -dfx" }, "dependencies": { - "fs-extra": "^0.30.0" + "pre-commit": "^1.1.3" }, "license": "MIT", "repository": {