build: ignore errors on install hook

This commit is contained in:
Karl-Philipp Wulfert
2018-12-04 13:03:40 +01:00
parent dae09c5c59
commit 0017c0f3ce

View File

@@ -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'"