build: install correct dependencies before publishing

This commit is contained in:
Karl-Philipp Wulfert
2019-02-25 19:27:23 +01:00
parent 777864964e
commit c3dde94530

View File

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