Skip to content

Commit

Permalink
Fix ignore pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
timneutkens committed Sep 25, 2023
1 parent df77e0b commit 826d1c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/next/taskfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -2660,7 +2660,7 @@ export async function shared(task, opts) {
await task
.source('src/shared/**/*.+(js|ts|tsx)', {
ignore: [
'src/shared/**/(amp|config|constants|dynamic|app-dynamic|head|runtime-config).+(js|ts|tsx)',
'src/shared/**/{amp,config,constants,dynamic,app-dynamic,head,runtime-config}.+(js|ts|tsx)',
'**/*.test.d.ts',
'**/*.test.+(js|ts|tsx)',
],
Expand All @@ -2673,7 +2673,7 @@ export async function shared_esm(task, opts) {
await task
.source('src/shared/**/*.+(js|ts|tsx)', {
ignore: [
'src/shared/**/(amp|config|constants|dynamic|app-dynamic|head|runtime-config).+(js|ts|tsx)',
'src/shared/**/{amp,config,constants,dynamic,app-dynamic,head,runtime-config}.+(js|ts|tsx)',
'**/*.test.d.ts',
'**/*.test.+(js|ts|tsx)',
],
Expand Down

0 comments on commit 826d1c1

Please sign in to comment.