Skip to content

Commit

Permalink
chore: remove extra console log
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0 committed Jul 18, 2023
1 parent 96b8d7d commit 76bb4f7
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/loaders/js.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ const TS_EXTS = new Set([".ts", ".mts", ".cts"]);

export const jsLoader: Loader = async (input, { options }) => {
if (!KNOWN_EXT_RE.test(input.path) || DECLARATION_RE.test(input.path)) {
console.log("Ignoring file with known extension:", input.path);
return;
}

Expand Down

0 comments on commit 76bb4f7

Please sign in to comment.