@travetto/exec
Advanced tools
Comparing version 0.0.12 to 0.0.13
@@ -8,5 +8,3 @@ { | ||
"@travetto/base": "0.x.x", | ||
"@travetto/pool": "0.x.x", | ||
"@types/cross-spawn": "^6.0.0", | ||
"cross-spawn": "^6.0.5" | ||
"@travetto/pool": "0.x.x" | ||
}, | ||
@@ -20,3 +18,3 @@ "description": "", | ||
}, | ||
"version": "0.0.12" | ||
"version": "0.0.13" | ||
} |
import * as cp from 'child_process'; | ||
import * as crossSpawn from 'cross-spawn'; | ||
import { ExecutionOptions, ExecutionResult } from './types'; | ||
@@ -71,3 +70,3 @@ import { scanDir, Entry } from '@travetto/base'; | ||
const { cmd, args } = getArgs(cmdStr); | ||
const p = crossSpawn(cmd, args, options); | ||
const p = cp.spawn(cmd, args, { ...(options as cp.SpawnOptions), shell: true }); | ||
return [p, enhanceProcess(p, options)]; | ||
@@ -74,0 +73,0 @@ } |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2
13293
424
- Removed@types/cross-spawn@^6.0.0
- Removedcross-spawn@^6.0.5
- Removed@types/cross-spawn@6.0.6(transitive)
- Removedcross-spawn@6.0.6(transitive)
- Removedisexe@2.0.0(transitive)
- Removednice-try@1.0.5(transitive)
- Removedpath-key@2.0.1(transitive)
- Removedsemver@5.7.2(transitive)
- Removedshebang-command@1.2.0(transitive)
- Removedshebang-regex@1.0.0(transitive)
- Removedwhich@1.3.1(transitive)