From be34d471296020f4f753133fbd5079e64c958c2b Mon Sep 17 00:00:00 2001 From: smeng9 <38666763+smeng9@users.noreply.github.com> Date: Tue, 7 Jan 2025 11:43:01 -0800 Subject: [PATCH] fix lint again --- packages/vite/src/node/optimizer/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/vite/src/node/optimizer/index.ts b/packages/vite/src/node/optimizer/index.ts index 0636b8235c8b79..103afad0c7ee67 100644 --- a/packages/vite/src/node/optimizer/index.ts +++ b/packages/vite/src/node/optimizer/index.ts @@ -1261,7 +1261,7 @@ function getLockfileHash(environment: Environment): string { const baseDir = lockfilePath.slice(0, -lockfileFormat.path.length) const fullPath = path.join( baseDir, - lockfileFormat.checkPatchesDir as string + lockfileFormat.checkPatchesDir as string, ) const stat = tryStatSync(fullPath) if (stat?.isDirectory()) {