fix(core): update

This commit is contained in:
Philipp Kunz 2021-01-29 20:50:18 +00:00
parent 49601f3bac
commit ad7035e5e3
3 changed files with 595 additions and 480 deletions

1065
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -19,8 +19,8 @@
"devDependencies": {
"@gitzone/tsbuild": "^2.1.25",
"@gitzone/tstest": "^1.0.52",
"@pushrocks/tapbundle": "^3.2.9",
"@types/node": "^14.14.9",
"@pushrocks/tapbundle": "^3.2.10",
"@types/node": "^14.14.22",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.15.0"
},
@ -31,8 +31,8 @@
"@pushrocks/smartlog": "^2.0.39",
"@pushrocks/smartlog-destination-local": "^8.0.8",
"@pushrocks/smartshell": "^2.0.26",
"typedoc": "^0.19.2",
"typescript": "^4.1.2"
"typedoc": "^0.20.19",
"typescript": "^4.1.3"
},
"files": [
"ts/**/*",

View File

@ -40,7 +40,7 @@ export class TypeDoc {
targetDir = plugins.path.join(targetDir, options.publicSubdir);
}
await this.smartshellInstance.exec(
`typedoc --tsconfig ${paths.tsconfigFile} --out ${targetDir}`
`typedoc --tsconfig ${paths.tsconfigFile} --out ${targetDir} ts/index.ts`
);
plugins.smartfile.fs.remove(paths.tsconfigFile);
}