Skip to content

Commit

Permalink
ci fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Molinaro committed Nov 14, 2021
1 parent 358f071 commit 6a163a7
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion lib/node/NodeWatchFileSystem.js
Expand Up @@ -28,7 +28,7 @@ class NodeWatchFileSystem {
* @param {Iterable<string>} missing watched exitance entries
* @param {number} startTime timestamp of start time
* @param {WatchOptions} options options object
* @param {function(Error=, Map<string, FileSystemInfoEntry>, Map<string, FileSystemInfoEntry>, Set<string>, Set<string>): void} callback aggregated callback
* @param {function(Error=, Map<string, FileSystemInfoEntry>, Set<string>, Set<string>): void} callback aggregated callback
* @param {function(string, number): void} callbackUndelayed callback when the first change was detected
* @returns {Watcher} a watcher
*/
Expand Down
2 changes: 1 addition & 1 deletion lib/util/fs.js
Expand Up @@ -78,7 +78,7 @@ const path = require("path");
* @param {Iterable<string>} missing watched exitance entries
* @param {number} startTime timestamp of start time
* @param {WatchOptions} options options object
* @param {function(Error=, Map<string, FileSystemInfoEntry | "ignore">, Map<string, FileSystemInfoEntry | "ignore">, Set<string>, Set<string>): void} callback aggregated callback
* @param {function(Error=, Map<string, FileSystemInfoEntry | "ignore">, Set<string>, Set<string>): void} callback aggregated callback
* @param {function(string, number): void} callbackUndelayed callback when the first change was detected
* @returns {Watcher} a watcher
*/
Expand Down
6 changes: 3 additions & 3 deletions test/__snapshots__/StatsTestCases.basictest.js.snap
Expand Up @@ -1292,7 +1292,7 @@ asset <CLR=32,BOLD>main.js</CLR> 84 bytes <CLR=32,BOLD>[emitted]</CLR> (name: ma
<CLR=BOLD>0 entries tested</CLR>
<CLR=BOLD>File info in cache: 1 timestamps 1 hashes 1 timestamp hash combinations</CLR>
<CLR=BOLD>File timestamp hash combination snapshot optimization: 0% (0/1) entries shared via 0 shared snapshots (0 times referenced)</CLR>
<CLR=BOLD>Directory info in cache: 0 timestamps 0 hashes 0 timestamp hash combinations</CLR>
<CLR=BOLD>Directory info in cache: 1 timestamps 0 hashes 0 timestamp hash combinations</CLR>
<CLR=BOLD>Managed items info in cache: 0 items</CLR>
webpack x.x.x compiled <CLR=32,BOLD>successfully</CLR> in X ms"
Expand Down Expand Up @@ -2081,7 +2081,7 @@ LOG from webpack.FileSystemInfo
0 entries tested
File info in cache: 6 timestamps 6 hashes 6 timestamp hash combinations
File timestamp hash combination snapshot optimization: 0% (0/6) entries shared via 0 shared snapshots (0 times referenced)
Directory info in cache: 0 timestamps 0 hashes 0 timestamp hash combinations
Directory info in cache: 6 timestamps 0 hashes 0 timestamp hash combinations
Managed items info in cache: 0 items
1970-04-20 12:42:42: webpack x.x.x compiled successfully in X ms (c7a4e3bf1797f14ec5d7)"
Expand Down Expand Up @@ -2457,7 +2457,7 @@ LOG from webpack.FileSystemInfo
0 entries tested
File info in cache: 6 timestamps 6 hashes 6 timestamp hash combinations
File timestamp hash combination snapshot optimization: 0% (0/6) entries shared via 0 shared snapshots (0 times referenced)
Directory info in cache: 0 timestamps 0 hashes 0 timestamp hash combinations
Directory info in cache: 6 timestamps 0 hashes 0 timestamp hash combinations
Managed items info in cache: 0 items
1970-04-20 12:42:42: webpack x.x.x compiled successfully in X ms (c7a4e3bf1797f14ec5d7)"
Expand Down
5 changes: 2 additions & 3 deletions types.d.ts
Expand Up @@ -11655,9 +11655,8 @@ declare interface WatchFileSystem {
callback: (
arg0: undefined | Error,
arg1: Map<string, FileSystemInfoEntry | "ignore">,
arg2: Map<string, FileSystemInfoEntry | "ignore">,
arg3: Set<string>,
arg4: Set<string>
arg2: Set<string>,
arg3: Set<string>
) => void,
callbackUndelayed: (arg0: string, arg1: number) => void
) => Watcher;
Expand Down

0 comments on commit 6a163a7

Please sign in to comment.