Open
Description
I created a gulp task with the following:
function docs() {
return src('src/**/*.ts').pipe(
compodoc({
output: 'docs',
tsconfig: 'tsconfig.json',
})
);
}
exports.docs = docs;
gulp will complete the task with no issues.
However, if I add coverageTest: <percent>
then the task runs, but gulp asks if the task had completed. It does not matter if the doc coverage passes or fails.
This is my current task:
function docs() {
return src('src/**/*.ts').pipe(
compodoc({
output: 'docs',
tsconfig: 'tsconfig.json',
coverageTest: 70
})
);
}
exports.docs = docs;
versions:
- @compodoc/compodoc 1.1.11
- @compodoc/gulp-compodoc 0.0.10
- gulp 4.0.2
Metadata
Metadata
Assignees
Labels
No labels