diff --git a/packages/nx/src/plugins/js/index.ts b/packages/nx/src/plugins/js/index.ts index 2f4f565a83..1f8b6f3054 100644 --- a/packages/nx/src/plugins/js/index.ts +++ b/packages/nx/src/plugins/js/index.ts @@ -57,6 +57,7 @@ export const createNodes: CreateNodes = [ ? readFileSync(lockFilePath).toString() : execSync(`bun ${lockFilePath}`, { maxBuffer: 1024 * 1024 * 10, + windowsHide: true, }).toString(); const lockFileHash = getLockFileHash(lockFileContents); @@ -102,6 +103,7 @@ export const createDependencies: CreateDependencies = ( ? readFileSync(lockFilePath).toString() : execSync(`bun ${lockFilePath}`, { maxBuffer: 1024 * 1024 * 10, + windowsHide: true, }).toString(); const lockFileHash = getLockFileHash(lockFileContents);