(pkg: Package)
| 194 | } |
| 195 | |
| 196 | runCommandInPackageStreaming(pkg: Package) { |
| 197 | const [command, args] = this.getShellCommand(); |
| 198 | return childProcess.spawnStreaming(command, args, this.getOpts(pkg), (this.prefix && pkg.name) as string); |
| 199 | } |
| 200 | |
| 201 | runCommandInPackageCapturing(pkg: Package) { |
| 202 | const [command, args] = this.getShellCommand(); |
no test coverage detected