From f2ce138e869c708f498d1492a15b88cb301387d3 Mon Sep 17 00:00:00 2001 From: Isaac Sanchez-Hawkins <266845420+isanchez404@users.noreply.github.com> Date: Tue, 12 May 2026 04:06:40 -0400 Subject: [PATCH] fix(vscode): include mtime in fs stat proxy (#1188) Co-authored-by: Isaac Sanchez --- packages/vscode/src/bridge-localfs-proxy-runtime.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/vscode/src/bridge-localfs-proxy-runtime.ts b/packages/vscode/src/bridge-localfs-proxy-runtime.ts index b7e90aea..6f86ba42 100644 --- a/packages/vscode/src/bridge-localfs-proxy-runtime.ts +++ b/packages/vscode/src/bridge-localfs-proxy-runtime.ts @@ -79,6 +79,7 @@ export const tryHandleLocalFsProxy = async (method: string, requestPath: string) path: normalizeFsPath(resolution.resolvedPath), isFile: true, size: stats.size, + mtimeMs: stats.mtimeMs, })), }; }