Skip to content

Commit

Permalink
fix(_tools): fix regex match to extract mod.ts files (denoland#6330)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbronder committed Jan 5, 2025
1 parent e3dc30a commit b54522c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _tools/check_mod_exports.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ for await (
const { path: modFilePath } of walk(ROOT, {
includeDirs: true,
exts: ["ts"],
match: [/mod\.ts$/],
match: [/\/mod\.ts$/],
maxDepth: 2,
})
) {
Expand Down

0 comments on commit b54522c

Please sign in to comment.