We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b681279 commit 2a6b649Copy full SHA for 2a6b649
src/package-managers/pnpm.ts
@@ -55,11 +55,7 @@ const npmConfigFromPnpmWorkspace = memoize(async (options: Options): Promise<Npm
55
* Spawn pnpm. On Windows, prefer `pnpm.cmd` but fall back to `pnpm` when the
56
* `.cmd` shim is not available (e.g. mise, scoop).
57
*/
58
-async function spawnPnpmCommand(
59
- args: string[],
60
- spawnPleaseOptions?: SpawnPleaseOptions,
61
- spawnOptions?: SpawnOptions,
62
-) {
+async function spawnPnpmCommand(args: string[], spawnPleaseOptions?: SpawnPleaseOptions, spawnOptions?: SpawnOptions) {
63
if (process.platform !== 'win32') {
64
return spawn('pnpm', args, spawnPleaseOptions, spawnOptions)
65
}
0 commit comments