Comparing version 0.0.34 to 0.0.35
{ | ||
"name": "@lbu/cli", | ||
"version": "0.0.34", | ||
"version": "0.0.35", | ||
"description": "CLI containing utilities and simple script runner", | ||
@@ -22,4 +22,4 @@ "main": "./index.js", | ||
"dependencies": { | ||
"@lbu/insight": "0.0.34", | ||
"@lbu/stdlib": "0.0.34", | ||
"@lbu/insight": "0.0.35", | ||
"@lbu/stdlib": "0.0.35", | ||
"c8": "7.2.0", | ||
@@ -43,3 +43,3 @@ "nodemon": "2.0.4", | ||
}, | ||
"gitHead": "377f90ac9855b0202b0a5cb6f39f620e811fe21c" | ||
"gitHead": "4b370a030904a3017431211e9bdfa47aa4e7335d" | ||
} |
@@ -7,3 +7,2 @@ import { newLogger } from "@lbu/insight"; | ||
} from "@lbu/stdlib"; | ||
import test from "tape"; | ||
@@ -33,25 +32,4 @@ const __filename = filenameForModule(import.meta); | ||
/** | ||
* | ||
*/ | ||
async function main() { | ||
test.Test.prototype.asyncShouldThrow = async function (cb, msg) { | ||
try { | ||
await cb(); | ||
this.fail(msg); | ||
} catch (e) { | ||
this.ok(msg || e.message); | ||
} | ||
}; | ||
test.Test.prototype.asyncShouldNotThrow = async function (cb) { | ||
try { | ||
await cb(); | ||
this.ok(true, "cb did not throw"); | ||
} catch (e) { | ||
this.fail(e); | ||
} | ||
}; | ||
await processDirectoryRecursiveSync(process.cwd(), contentHandler); | ||
} |
317061
41
1099
+ Added@lbu/insight@0.0.35(transitive)
+ Added@lbu/stdlib@0.0.35(transitive)
- Removed@lbu/insight@0.0.34(transitive)
- Removed@lbu/stdlib@0.0.34(transitive)
Updated@lbu/insight@0.0.35
Updated@lbu/stdlib@0.0.35