We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7d1562 commit 2ab7cb1Copy full SHA for 2ab7cb1
packages/host/app/lib/current-run.ts
@@ -311,7 +311,9 @@ export class CurrentRun {
311
}, skipped these files ${JSON.stringify(skipList)}`,
312
);
313
let invalidationStart = Date.now();
314
- await this.batch.invalidate(new URL(url));
+ for (let invalidationURL of invalidationList) {
315
+ await this.batch.invalidate(new URL(invalidationURL));
316
+ }
317
console.log(
318
`time to invalidate ${url} ${Date.now() - invalidationStart} ms`,
319
0 commit comments