Socket
Socket
Sign inDemoInstall

debugbear

Package Overview
Dependencies
28
Maintainers
1
Versions
40
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 2.0.20 to 2.0.21

6

dist/runCli.js

@@ -87,2 +87,5 @@ "use strict";

options = program.opts();
if (process.env.DEBUG) {
console.log("Options: ", options);
}
baseUrl = undefined;

@@ -92,2 +95,5 @@ _a.label = 1;

_a.trys.push([1, 3, , 4]);
if (options.fail && !options.waitForResult) {
throw Error("--fail option requires --waitForResult option");
}
return [4 /*yield*/, analyzePage(Object.assign({

@@ -94,0 +100,0 @@ url: urlValue,

2

package.json
{
"name": "debugbear",
"version": "2.0.20",
"version": "2.0.21",
"description": "Use DebugBear to test web performance as part of your Continuous Integration process.",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

@@ -64,5 +64,13 @@ import * as commander from "commander";

if (process.env.DEBUG) {
console.log("Options: ", options);
}
let baseUrl = undefined;
try {
if (options.fail && !options.waitForResult) {
throw Error("--fail option requires --waitForResult option");
}
await analyzePage(

@@ -69,0 +77,0 @@ Object.assign(

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc