fix: correctly add shebang line to cli

This commit is contained in:
Karl-Philipp Wulfert
2019-01-17 14:38:40 +01:00
parent 9c3cd369b0
commit f2933ef9e2

View File

@@ -10,7 +10,7 @@
"build": "npm run tslint && npm run compile && npm run documentation",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md && git commit -m 'docs: update changelog'",
"check-configuration": "openstapps-configuration",
"compile": "rimraf lib && tsc --outDir lib && prepend lib/projectmanagement.cli.js '#!/usr/bin/env node\n' && prepend lib/pack.cli.js '#!/usr/bin/env node\n'",
"compile": "rimraf lib && tsc --outDir lib && prepend lib/cli.js '#!/usr/bin/env node\n'",
"documentation": "typedoc --includeDeclarations --excludeExternals --mode modules --out docs src",
"prepublishOnly": "npm run build",
"tslint": "tslint 'src/**/*.ts'"