Skip to content

Commit 2a6b649

Browse files
committed
prettier
1 parent b681279 commit 2a6b649

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/package-managers/pnpm.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,7 @@ const npmConfigFromPnpmWorkspace = memoize(async (options: Options): Promise<Npm
5555
* Spawn pnpm. On Windows, prefer `pnpm.cmd` but fall back to `pnpm` when the
5656
* `.cmd` shim is not available (e.g. mise, scoop).
5757
*/
58-
async function spawnPnpmCommand(
59-
args: string[],
60-
spawnPleaseOptions?: SpawnPleaseOptions,
61-
spawnOptions?: SpawnOptions,
62-
) {
58+
async function spawnPnpmCommand(args: string[], spawnPleaseOptions?: SpawnPleaseOptions, spawnOptions?: SpawnOptions) {
6359
if (process.platform !== 'win32') {
6460
return spawn('pnpm', args, spawnPleaseOptions, spawnOptions)
6561
}

0 commit comments

Comments
 (0)