Skip to content

Commit

Permalink
chore: push new bundle
Browse files Browse the repository at this point in the history
  • Loading branch information
Blissful89 committed Nov 20, 2024
1 parent cc6b3bc commit 0765907
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
Original file line number Diff line number Diff line change
Expand Up @@ -29672,7 +29672,7 @@ function buildTodoMatcher(customMatcher, customIgnoreMatcher) {
};
const escapedTodoPatterns = todoMatcher.map(matcher => escapePattern(matcher));
const escapedIgnorePatterns = escapePattern(customIgnoreMatcher);
const ignoreRegex = Boolean(customIgnoreMatcher)
const ignoreRegex = customIgnoreMatcher
? `(?!.*${escapedIgnorePatterns}.*)`
: '';
const regex = `(?:${escapedTodoPatterns.join('|')})${ignoreRegex}.*?(TODO.*|FIXME.*)`;
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

0 comments on commit 0765907

Please sign in to comment.