From 0017c0f3ce8dcabcd6da43e7aab2eab278232791 Mon Sep 17 00:00:00 2001 From: Karl-Philipp Wulfert Date: Tue, 4 Dec 2018 13:03:40 +0100 Subject: [PATCH] build: ignore errors on install hook --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a7f321e0..fe28084e 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "compile": "rimraf lib/* && tsc --outDir lib && prepend lib/cli.js '#!/usr/bin/env node\n'", "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0", "documentation": "typedoc --includeDeclarations --excludeExternals --mode modules --out docs src", - "install": "node lib/cli.js -p $INIT_CWD", + "install": "node lib/cli.js -p $INIT_CWD || true", "prepareOnly": "npm run build", "test": "echo \"Error: no test specified\" && exit 1", "tslint": "tslint 'src/**/*.ts'"