Skip to content

Commit

Permalink
update doc building
Browse files Browse the repository at this point in the history
  • Loading branch information
apowers313 committed Oct 10, 2020
1 parent f7a24ea commit c5e2210
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
5 changes: 0 additions & 5 deletions .jsdoc-conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,6 @@
"tags": {
"allowUnknownTags": false
},
"source": {
"include": "lib",
"includePattern": "\\.js$",
"excludePattern": "node_modules"
},
"plugins": [
"plugins/markdown"
],
Expand Down
6 changes: 3 additions & 3 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,9 @@ const watchCoverage = parallel(coverageBrowserSync, coverageRefresh);
/* ************
* DOCS
**************/
function docsBuild() {
return src(documentation, {read: false})
.pipe(jsdoc(jsDocConfig));
function docsBuild(done) {
src(documentation, {read: false})
.pipe(jsdoc(jsDocConfig, done));
}

const docs = series(docsBuild, copyCss);
Expand Down

0 comments on commit c5e2210

Please sign in to comment.