Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@lbu/cli

Package Overview
Dependencies
Maintainers
2
Versions
102
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lbu/cli - npm Package Compare versions

Comparing version 0.0.34 to 0.0.35

yarn-error.log

8

package.json
{
"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);
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc