diff --git a/tools/fs/safe-watcher.ts b/tools/fs/safe-watcher.ts index 3e9bda0ab4..492bd03028 100644 --- a/tools/fs/safe-watcher.ts +++ b/tools/fs/safe-watcher.ts @@ -301,6 +301,9 @@ async function ensureWatchRoot(dirPath: string): Promise { osDirPath, (err, events) => { if (err) { + if (/Events were dropped/.test(err.message)) { + return; + } console.error(`Parcel watcher error on ${osDirPath}:`, err); // Only disable native watching for critical errors (like ENOSPC). // @ts-ignore