refactor: remove remains of markdown specific code

This commit is contained in:
Karl-Philipp Wulfert
2019-03-20 16:30:42 +01:00
parent 04eb1f1f36
commit 5577ffee7d
4 changed files with 128 additions and 125 deletions

View File

@@ -10,8 +10,8 @@
"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/cli.js '#!/usr/bin/env node\n'",
"documentation": "typedoc --includeDeclarations --excludeExternals --mode modules --out docs src",
"compile": "rimraf lib && tsc && prepend lib/cli.js '#!/usr/bin/env node\n'",
"documentation": "typedoc --includeDeclarations --mode modules --out docs --readme README.md --listInvalidSymbolLinks src",
"prepublishOnly": "npm ci && npm run build",
"tslint": "tslint 'src/**/*.ts'"
},