fix(misc): create-nx-workspace should work with custom presets on windows (#16473)

This commit is contained in:
Craigory Coppola 2023-04-21 16:53:23 -04:00 committed by GitHub
parent b719222d42
commit 04a0c7734f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,6 +12,8 @@ export function spawnAndWait(command: string, args: string[], cwd: string) {
cwd,
stdio: 'inherit',
env: { ...process.env, NX_DAEMON: 'false' },
shell: true,
windowsHide: true,
});
childProcess.on('exit', (code) => {