From c3dde94530283207967c6ec738fd0414ec4a56b1 Mon Sep 17 00:00:00 2001 From: Karl-Philipp Wulfert Date: Mon, 25 Feb 2019 19:27:23 +0100 Subject: [PATCH] build: install correct dependencies before publishing --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a223cf3a..4e661b36 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md && git commit -m 'docs: update changelog'", "documentation": "typedoc --includeDeclarations --excludeExternals --mode modules --out docs src", "install": "node lib/cli.js -p $INIT_CWD || true", - "prepublishOnly": "npm run build", + "prepublishOnly": "npm ci && npm run build", "test": "echo \"Error: no test specified\" && exit 1", "tslint": "tslint 'src/**/*.ts'" },