@essex/shellrunner
Advanced tools
Comparing version 8.0.0-alpha.7 to 8.0.0-alpha.9
@@ -8,5 +8,5 @@ "use strict"; | ||
*/ | ||
const fs_1 = require("fs"); | ||
const os_1 = require("os"); | ||
const path_1 = require("path"); | ||
const fs_1 = require("fs"); | ||
const log = require("../log"); | ||
@@ -13,0 +13,0 @@ const sep = os_1.platform().indexOf('win') === 0 ? ';' : ':'; |
@@ -1,6 +0,2 @@ | ||
/*! | ||
* Copyright (c) Microsoft. All rights reserved. | ||
* Licensed under the MIT license. See LICENSE file in the project. | ||
*/ | ||
import { Job, JobResult } from '../types'; | ||
export declare function single(job: Job): Promise<JobResult>; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.single = void 0; | ||
/*! | ||
* Copyright (c) Microsoft. All rights reserved. | ||
* Licensed under the MIT license. See LICENSE file in the project. | ||
*/ | ||
const log = require("../log"); | ||
const execute_1 = require("./execute"); | ||
const log = require("../log"); | ||
async function single(job) { | ||
@@ -7,0 +11,0 @@ const { exec, id } = job; |
{ | ||
"name": "@essex/shellrunner", | ||
"version": "8.0.0-alpha.7", | ||
"version": "8.0.0-alpha.9", | ||
"description": "A set of utility libraries for executing shell commands", | ||
@@ -20,3 +20,3 @@ "main": "lib/index.js", | ||
"cross-spawn": "^7.0.3", | ||
"debug": "^4.1.1", | ||
"debug": "^4.2.0", | ||
"supports-color": "^7.1.0" | ||
@@ -28,5 +28,5 @@ }, | ||
"rimraf": "^3.0.2", | ||
"typescript": "^3.9.5" | ||
"typescript": "^3.9.6" | ||
}, | ||
"gitHead": "2d52185ef6b8a83e93cede1f06b1cd088c1e3c2b" | ||
"gitHead": "1749e699bb509f670636bf87acc96c3f02713509" | ||
} |
@@ -6,4 +6,4 @@ /*! | ||
import 'colors' | ||
import * as dbg from 'debug' | ||
import { Job } from './types' | ||
import * as dbg from 'debug' | ||
const debugLog = dbg('essex:shellrunner') | ||
@@ -10,0 +10,0 @@ |
@@ -5,5 +5,5 @@ /*! | ||
*/ | ||
import { existsSync } from 'fs' | ||
import { platform } from 'os' | ||
import { join, resolve } from 'path' | ||
import { existsSync } from 'fs' | ||
import * as log from '../log' | ||
@@ -10,0 +10,0 @@ |
@@ -5,5 +5,5 @@ /*! | ||
*/ | ||
import * as log from '../log' | ||
import { Job, JobResult } from '../types' | ||
import { execute } from './execute' | ||
import * as log from '../log' | ||
@@ -10,0 +10,0 @@ export async function single(job: Job): Promise<JobResult> { |
Updateddebug@^4.2.0