Skip to content

Commit

Permalink
Turbopack: remove node_modules error filter (#62586)
Browse files Browse the repository at this point in the history
### What?

This isn't needed

### Why?

### How?


Closes PACK-2604
  • Loading branch information
sokra committed Mar 1, 2024
1 parent ec1cd79 commit 744d9f4
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions packages/next/src/server/dev/turbopack-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,9 +144,6 @@ export function processIssues(
const formatted = formatIssue(issue)
newIssues.set(issueKey, issue)

// We show errors in node_modules to the console, but don't throw for them
if (/(^|\/)node_modules(\/|$)/.test(issue.filePath)) continue

relevantIssues.add(formatted)
}

Expand Down

0 comments on commit 744d9f4

Please sign in to comment.