Skip to content

Commit

Permalink
Disable staticFiles, not supported with webdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
bigtimebuddy authored Apr 23, 2021
1 parent 5c31df3 commit 143218d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions publish.js
Original file line number Diff line number Diff line change
Expand Up @@ -636,7 +636,7 @@ exports.publish = (options) => {
});

// copy user-specified static files to outdir
if (conf.default.staticFiles) {
/*if (conf.default.staticFiles) {
// The canonical property name is `include`. We accept `paths` for backwards compatibility
// with a bug in JSDoc 3.2.x.
staticFilePaths = conf.default.staticFiles.include ||
Expand All @@ -659,7 +659,7 @@ exports.publish = (options) => {
fs.copyFileSync(fileName, toPath);
});
});
}
}*/

if (sourceFilePaths.length) {
sourceFiles = shortenPaths( sourceFiles, commonPathPrefix(sourceFilePaths) );
Expand Down

0 comments on commit 143218d

Please sign in to comment.