Skip to content

Commit 493e028

Browse files
chore: update deps (#221)
* chore: update deps * fix: types * chore: update lock files
1 parent aafeb33 commit 493e028

File tree

5 files changed

+759
-1599
lines changed

5 files changed

+759
-1599
lines changed

declarations/LintDirtyModulesPlugin.d.ts

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,18 @@ export default class LintDirtyModulesPlugin {
2323
*/
2424
apply(compilation: Compiler, callback: LinterCallback): void;
2525
/**
26-
* @param {Map<string, number>} fileTimestamps
26+
* @param {Map<string, number|FileSystemInfoEntry>} fileTimestamps
2727
* @param {string | ReadonlyArray<string>} glob
2828
* @returns {Array<string>}
2929
*/
3030
getChangedFiles(
31-
fileTimestamps: Map<string, number>,
31+
fileTimestamps: Map<
32+
string,
33+
| number
34+
| Partial<{
35+
timestamp: number;
36+
}>
37+
>,
3238
glob: string | ReadonlyArray<string>
3339
): Array<string>;
3440
}

0 commit comments

Comments
 (0)