From 37d54c441dec914ea6289ec64790ce283f9da34a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nacho=20Codo=C3=B1er?= Date: Thu, 24 Apr 2025 15:37:55 +0200 Subject: [PATCH] remove unused imports --- tools/fs/safe-watcher.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/fs/safe-watcher.ts b/tools/fs/safe-watcher.ts index 3f8c88dc28..a0b90c6c25 100644 --- a/tools/fs/safe-watcher.ts +++ b/tools/fs/safe-watcher.ts @@ -2,7 +2,7 @@ import { Stats } from 'fs'; import ParcelWatcher from "@parcel/watcher"; import { Profile } from "../tool-env/profile"; -import { statOrNull, lstat, toPosixPath, convertToOSPath, pathRelative, watchFile, unwatchFile, pathResolve, pathDirname, realpathOrNull, readdir, pathJoin } from "./files"; +import { statOrNull, lstat, toPosixPath, convertToOSPath, pathRelative, watchFile, unwatchFile, pathResolve, pathDirname } from "./files"; // Register process exit handlers to ensure subscriptions are properly cleaned up const registerExitHandlers = () => {