New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.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.30 to 0.0.31

2

package.json

@@ -17,3 +17,3 @@ {

},
"version": "0.0.30"
"version": "0.0.31"
}
import { DockerContainer } from './docker';
import { AppEnv } from '@travetto/base';
import { spawn } from './util';
import { ChildProcess } from 'child_process';
import { ExecutionResult, CommonProcess } from './types';

@@ -28,3 +30,3 @@ export class CommandService {

async exec(...args: string[]) {
exec(...args: string[]) {
let exec;

@@ -38,5 +40,4 @@ if (this.container) {

}
const [proc, prom] = await exec;
return [proc, prom];
return exec as [CommonProcess, Promise<ExecutionResult>];
}
}

@@ -195,3 +195,3 @@ import * as child_process from 'child_process';

async exec(flags?: string[], args?: string[]) {
exec(flags?: string[], args?: string[]) {
const { proc, prom } = this._cmd('exec', ...(flags || []), this.container, ...(args || []));

@@ -198,0 +198,0 @@ this._proc = proc;

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