From 91dea452bee5f0551fc6c60df534f6f6da47b5e0 Mon Sep 17 00:00:00 2001 From: gnanam1990 Date: Fri, 24 Apr 2026 07:43:43 +0530 Subject: [PATCH] fix(shell): drop now-unused realpath import --- src/utils/Shell.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/Shell.ts b/src/utils/Shell.ts index 83699cf2..66ac15ee 100644 --- a/src/utils/Shell.ts +++ b/src/utils/Shell.ts @@ -1,6 +1,6 @@ import { execFileSync, spawn } from 'child_process' import { constants as fsConstants, readFileSync, unlinkSync } from 'fs' -import { type FileHandle, mkdir, open, realpath, stat } from 'fs/promises' +import { type FileHandle, mkdir, open, stat } from 'fs/promises' import memoize from 'lodash-es/memoize.js' import { isAbsolute, resolve } from 'path' import { join as posixJoin } from 'path/posix'