Skip to content

Commit

Permalink
using exclusion
Browse files Browse the repository at this point in the history
  • Loading branch information
DaanV2 authored Apr 9, 2024
1 parent 3fdaedb commit ac23ab9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/traverse.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export class Processor {
* @returns True if the index page was created, false if not
*/
createFolder(folder: string): boolean {
if (!this.includeFile(folder)) {
if (this.filter.excluded(folder)) {
return false;
}

Expand Down

0 comments on commit ac23ab9

Please sign in to comment.