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

@bull-board/api

Package Overview
Dependencies
Maintainers
0
Versions
164
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@bull-board/api - npm Package Compare versions

Comparing version 6.5.0 to 6.5.1

5

dist/src/queueAdapters/bullMQ.js
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.BullMQAdapter = void 0;
const bullmq_1 = require("bullmq");
const statuses_1 = require("../constants/statuses");

@@ -8,7 +9,7 @@ const base_1 = require("./base");

constructor(queue, options = {}) {
var _a;
var _a, _b;
const libName = 'bullmq';
super(libName, options);
this.queue = queue;
if (!((_a = queue.metaValues) === null || _a === void 0 ? void 0 : _a.version).startsWith(libName)) {
if (!(queue instanceof bullmq_1.Queue) || !((_b = (_a = queue.metaValues) === null || _a === void 0 ? void 0 : _a.version) === null || _b === void 0 ? void 0 : _b.startsWith(libName))) {
throw new Error(`You've used the BullMQ adapter with a non-BullMQ queue.`);

@@ -15,0 +16,0 @@ }

4

package.json
{
"name": "@bull-board/api",
"version": "6.5.0",
"version": "6.5.1",
"description": "A Dashboard server API built on top of bull or bullmq.",

@@ -42,3 +42,3 @@ "keywords": [

"peerDependencies": {
"@bull-board/ui": "6.5.0"
"@bull-board/ui": "6.5.1"
},

@@ -45,0 +45,0 @@ "publishConfig": {

Sorry, the diff of this file is not supported yet

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