Comparing version 22.1.0 to 22.1.1
@@ -13,4 +13,4 @@ const chalk = require('chalk') | ||
for (const parts of stack.map((line) => line.match(/^(.*?)(\(.*\))?$/))) { | ||
console.error(parts[1] + (parts[2] != null ? parts[2] : '')) | ||
for (const line of stack) { | ||
console.error(line) | ||
} | ||
@@ -17,0 +17,0 @@ } else { |
{ | ||
"name": "sergeant", | ||
"version": "22.1.0", | ||
"version": "22.1.1", | ||
"description": "", | ||
"main": "main.js", | ||
"scripts": { | ||
"test": "standard && tape test.js" | ||
"test": "tasks standard 'tape test.js'" | ||
}, | ||
@@ -20,2 +20,3 @@ "repository": { | ||
"devDependencies": { | ||
"@erickmerchant/tasks": "^0.2.0", | ||
"proxyquire": "^2.1.0", | ||
@@ -22,0 +23,0 @@ "standard": "^12.0.1", |
30350
4