From 3e1f3e44512c68f110baf8e0b3d778c4559fe3aa Mon Sep 17 00:00:00 2001 From: appzuka Date: Sat, 24 Nov 2018 19:02:49 +0000 Subject: [PATCH] fix(package): restore prepare script in package.json so that npm install from github works (#367) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 413966f..9f14c2f 100644 --- a/package.json +++ b/package.json @@ -21,7 +21,7 @@ "ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}", "lint-staged": "lint-staged", "prebuild": "npm run clean", - "prepublish": "npm run build", + "prepare": "npm run build", "release": "standard-version", "release:ci": "conventional-github-releaser -p angular", "release:validate": "commitlint --from=$(git describe --tags --abbrev=0) --to=$(git rev-parse HEAD)",