Skip to content

Commit 33846fa

Browse files
Update ignore globs depending on compile configuration (fix avajs#33)
1 parent 34da7bf commit 33846fa

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ export default function typescriptProvider({negotiateProtocol}) {
115115
return false;
116116
}
117117

118-
return rewritePaths.some(([from]) => filePath.startsWith(from));
118+
return rewritePaths.some(([to, from]) => filePath.startsWith(compile === 'tsc' ? from : to));
119119
},
120120

121121
resolveTestFile(testfile) {
@@ -142,7 +142,7 @@ export default function typescriptProvider({negotiateProtocol}) {
142142
],
143143
ignoredByWatcherPatterns: [
144144
...ignoredByWatcherPatterns,
145-
...Object.values(relativeRewritePaths).map(to => `${to}**/*.js.map`),
145+
...Object.entries(relativeRewritePaths).map(([to, from]) => `${compile === 'tsc' ? from : to}**`),
146146
],
147147
};
148148
},

test/snapshots/protocol-ava-3.2.js.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,6 @@ Generated by [AVA](https://avajs.dev).
110110
],
111111
ignoredByWatcherPatterns: [
112112
'assets/**',
113-
'build/**/*.js.map',
113+
'src/**',
114114
],
115115
}
-3 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)