@essex/shellrunner
Advanced tools
Comparing version 8.0.0-alpha.0 to 8.0.0-alpha.3
@@ -9,3 +9,4 @@ "use strict"; | ||
require("colors"); | ||
const debugLog = (...args) => console.log(...args); | ||
const dbg = require("debug"); | ||
const debugLog = dbg('essex:shellrunner'); | ||
function subtaskFail(text) { | ||
@@ -12,0 +13,0 @@ console.log(` ✘ ${text}`.red); |
{ | ||
"name": "@essex/shellrunner", | ||
"version": "8.0.0-alpha.0", | ||
"version": "8.0.0-alpha.3", | ||
"description": "A set of utility libraries for executing shell commands", | ||
@@ -28,3 +28,3 @@ "main": "lib/index.js", | ||
}, | ||
"gitHead": "03bd9d13348bf357b2b87c82126bd472afe9fcf8" | ||
"gitHead": "bf03a0d6c2fa458e785d4bbabd8951a4fdc0da72" | ||
} |
@@ -7,3 +7,4 @@ /*! | ||
import { Job } from './types' | ||
const debugLog = (...args: any[]): void => console.log(...args) | ||
import * as dbg from 'debug' | ||
const debugLog = dbg('essex:shellrunner') | ||
@@ -10,0 +11,0 @@ export function subtaskFail(text: string): void { |
20769
30
610