Skip to content

Commit

Permalink
Remove and add comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
dipack95 committed Mar 14, 2024
1 parent ebaae95 commit e313f66
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,10 @@ jobs:
with:
node-version: 20.x
- run: yarn install --immutable

# The exclusion from the `git diff` is necessary because `yarn install`
# on CI modifies the `.pnp.cjs` file to change their actual locations
# but we don't care about that on CI.
- run: yarn lint --quiet --fix && git diff --exit-code -- . ':(exclude)*.pnp.cjs'

build-to-npm:
Expand Down
3 changes: 0 additions & 3 deletions src/findAllWithRegex.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,6 @@ export function findAllWithRegex<TMatchKeys extends string>(
// Check for another
match = regex.value.exec(text);
i += 1;

// FIXME
console.log('TEST')
}

return results;
Expand Down

0 comments on commit e313f66

Please sign in to comment.