@pnpm/run-npm
Advanced tools
Comparing version 2.0.1 to 2.0.2
/// <reference types="node" /> | ||
export default function runNpm(npmPath: string | undefined, args: string[]): import("child_process").SpawnSyncReturns<Buffer>; | ||
import childProcess = require('child_process'); | ||
export default function runNpm(npmPath: string | undefined, args: string[]): childProcess.SpawnSyncReturns<Buffer>; | ||
export declare function runScriptSync(command: string, args: string[], opts: { | ||
cwd: string; | ||
stdio: string; | ||
stdio: childProcess.StdioOptions; | ||
userAgent?: string; | ||
}): import("child_process").SpawnSyncReturns<Buffer>; | ||
}): childProcess.SpawnSyncReturns<Buffer>; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.runScriptSync = void 0; | ||
const spawn = require("cross-spawn"); | ||
@@ -4,0 +5,0 @@ const path = require("path"); |
{ | ||
"name": "@pnpm/run-npm", | ||
"version": "2.0.1", | ||
"version": "2.0.2", | ||
"description": "Runs the npm CLI", | ||
@@ -30,8 +30,9 @@ "main": "lib/index.js", | ||
"@pnpm/run-npm": "link:", | ||
"@types/cross-spawn": "^6.0.1" | ||
"@types/cross-spawn": "^6.0.2" | ||
}, | ||
"dependencies": { | ||
"cross-spawn": "7.0.2", | ||
"cross-spawn": "^7.0.3", | ||
"path-name": "1.0.0" | ||
} | ||
}, | ||
"funding": "https://opencollective.com/pnpm" | ||
} |
3918
6
42
+ Addedcross-spawn@7.0.6(transitive)
- Removedcross-spawn@7.0.2(transitive)
Updatedcross-spawn@^7.0.3