We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5379965 commit 5023b5cCopy full SHA for 5023b5c
resources/utils.ts
@@ -35,8 +35,8 @@ interface NPMOptions extends SpawnOptions {
35
export function npm(options?: NPMOptions) {
36
let npmCmd;
37
let globalOptions = options?.quiet === true ? ['--quiet'] : [];
38
- // See: https://github.com/nodejs/node/issues/3675 and in particular
39
- // https://github.com/nodejs/node/issues/3675#issuecomment-308963807.
+
+ // See: https://github.com/nodejs/node/issues/3675.
40
if (process.platform === 'win32') {
41
npmCmd = 'cmd';
42
globalOptions = ['/c', 'npm.cmd', ...globalOptions];
0 commit comments