@essex/shellrunner
Advanced tools
Comparing version 20.0.4 to 20.0.5
{ | ||
"name": "@essex/shellrunner", | ||
"version": "20.0.4", | ||
"version": "20.0.5", | ||
"description": "A set of utility libraries for executing shell commands", | ||
@@ -26,3 +26,3 @@ "license": "MIT", | ||
"@swc/cli": "^0.1.55", | ||
"@swc/core": "1.2.147", | ||
"@swc/core": "1.2.151", | ||
"@types/debug": "^4.1.7", | ||
@@ -29,0 +29,0 @@ "@types/node": "^17.0.21", |
@@ -6,2 +6,3 @@ /*! | ||
import dbg from 'debug' | ||
import type { Job } from './types' | ||
@@ -8,0 +9,0 @@ const debugLog = dbg('essex:shellrunner') |
@@ -5,6 +5,7 @@ /*! | ||
*/ | ||
import type { SpawnOptions, ChildProcess } from 'child_process' | ||
import type { ChildProcess, SpawnOptions } from 'child_process' | ||
/* eslint-disable-next-line @typescript-eslint/ban-ts-comment */ | ||
// @ts-ignore no-typedef | ||
import spawn from 'cross-spawn' | ||
import type { Job, JobResult } from '../types.js' | ||
@@ -11,0 +12,0 @@ |
14457