Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

watchpack

Package Overview
Dependencies
Maintainers
2
Versions
61
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

watchpack - npm Package Compare versions

Comparing version
2.5.0
to
2.5.1
+2
-2
lib/DirectoryWatcher.js

@@ -17,3 +17,3 @@ /*

/** @typedef {import("./index").Entry} Entry */
/** @typedef {import("./index").ExistanceOnlyTimeEntry} ExistanceOnlyTimeEntry */
/** @typedef {import("./index").ExistenceOnlyTimeEntry} ExistenceOnlyTimeEntry */
/** @typedef {import("./index").OnlySafeTimeEntry} OnlySafeTimeEntry */

@@ -24,3 +24,3 @@ /** @typedef {import("./index").EventMap} EventMap */

/** @type {ExistanceOnlyTimeEntry} */
/** @type {ExistenceOnlyTimeEntry} */
const EXISTANCE_ONLY_TIME_ENTRY = Object.freeze({});

@@ -27,0 +27,0 @@

@@ -49,4 +49,4 @@ /*

// eslint-disable-next-line jsdoc/ts-no-empty-object-type
/** @typedef {{}} ExistanceOnlyTimeEntry */
/** @typedef {Map<string, Entry | OnlySafeTimeEntry | ExistanceOnlyTimeEntry | null>} TimeInfoEntries */
/** @typedef {{}} ExistenceOnlyTimeEntry */
/** @typedef {Map<string, Entry | OnlySafeTimeEntry | ExistenceOnlyTimeEntry | null>} TimeInfoEntries */
/** @typedef {Set<string>} Changes */

@@ -53,0 +53,0 @@ /** @typedef {Set<string>} Removals */

{
"name": "watchpack",
"version": "2.5.0",
"version": "2.5.1",
"description": "",

@@ -5,0 +5,0 @@ "homepage": "https://github.com/webpack/watchpack",

@@ -187,3 +187,3 @@ export = DirectoryWatcher;

Entry,
ExistanceOnlyTimeEntry,
ExistenceOnlyTimeEntry,
OnlySafeTimeEntry,

@@ -248,3 +248,3 @@ EventMap,

/** @typedef {import("./index").Entry} Entry */
/** @typedef {import("./index").ExistanceOnlyTimeEntry} ExistanceOnlyTimeEntry */
/** @typedef {import("./index").ExistenceOnlyTimeEntry} ExistenceOnlyTimeEntry */
/** @typedef {import("./index").OnlySafeTimeEntry} OnlySafeTimeEntry */

@@ -254,4 +254,4 @@ /** @typedef {import("./index").EventMap} EventMap */

/** @typedef {import("./watchEventSource").Watcher} EventSourceWatcher */
/** @type {ExistanceOnlyTimeEntry} */
declare const EXISTANCE_ONLY_TIME_ENTRY: ExistanceOnlyTimeEntry;
/** @type {ExistenceOnlyTimeEntry} */
declare const EXISTANCE_ONLY_TIME_ENTRY: ExistenceOnlyTimeEntry;
type IgnoredFunction = import("./index").IgnoredFunction;

@@ -261,3 +261,3 @@ type EventType = import("./index").EventType;

type Entry = import("./index").Entry;
type ExistanceOnlyTimeEntry = import("./index").ExistanceOnlyTimeEntry;
type ExistenceOnlyTimeEntry = import("./index").ExistenceOnlyTimeEntry;
type OnlySafeTimeEntry = import("./index").OnlySafeTimeEntry;

@@ -264,0 +264,0 @@ type EventMap = import("./index").EventMap;

@@ -121,3 +121,3 @@ export = Watchpack;

OnlySafeTimeEntry,
ExistanceOnlyTimeEntry,
ExistenceOnlyTimeEntry,
TimeInfoEntries,

@@ -231,6 +231,6 @@ Changes,

};
type ExistanceOnlyTimeEntry = {};
type ExistenceOnlyTimeEntry = {};
type TimeInfoEntries = Map<
string,
Entry | OnlySafeTimeEntry | ExistanceOnlyTimeEntry | null
Entry | OnlySafeTimeEntry | ExistenceOnlyTimeEntry | null
>;

@@ -237,0 +237,0 @@ type Changes = Set<string>;