Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@travetto/exec

Package Overview
Dependencies
Maintainers
1
Versions
110
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@travetto/exec - npm Package Compare versions

Comparing version 0.0.12 to 0.0.13

6

package.json

@@ -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 @@ }

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc