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

client-run-queue

Package Overview
Dependencies
Maintainers
1
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

client-run-queue - npm Package Compare versions

Comparing version 2.0.1 to 2.0.2

CHANGELOG.md

1

.eslintrc.js

@@ -27,2 +27,3 @@ module.exports = {

// Place to specify ESLint rules. Can be used to overwrite rules specified from the extended configs
'@typescript-eslint/consistent-type-imports': 'error',
'@typescript-eslint/explicit-function-return-type': 'off',

@@ -29,0 +30,0 @@ '@typescript-eslint/explicit-module-boundary-types': 'off',

2

lib/config/stats-handler.d.ts

@@ -1,2 +0,2 @@

import { RunQueue } from '../run-queue/queue';
import type { RunQueue } from '../run-queue/queue';
export interface StatsHandler {

@@ -3,0 +3,0 @@ /** Called whenever cancelAll is called on RunQueue */

import type { RunQueueEntry } from './types/entry';
import { RunQueueOptions } from './types/options';
import { RunQueueScheduleOptions } from './types/schedule-options';
import type { RunQueueOptions } from './types/options';
import type { RunQueueScheduleOptions } from './types/schedule-options';
export declare class RunQueue {

@@ -5,0 +5,0 @@ readonly id: string;

{
"name": "client-run-queue",
"version": "2.0.1",
"version": "2.0.2",
"description": "A client-friendly run queue",

@@ -17,4 +17,4 @@ "keywords": [

"types": "lib/index.d.ts",
"repository": "https://github.com/Passfolio/client-run-queue.git",
"homepage": "https://passfolio.github.io/client-run-queue/",
"repository": "https://github.com/TypeScript-OSS/client-run-queue.git",
"homepage": "https://typescript-oss.github.io/client-run-queue/",
"license": "MIT",

@@ -42,7 +42,7 @@ "private": false,

"@types/heap": "^0.2.31",
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"eslint": "8.33.0",
"eslint-config-prettier": "^8.6.0",
"@types/jest": "^29.4.4",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-import-resolver-typescript": "^3.5.3",

@@ -54,11 +54,11 @@ "eslint-plugin-import": "^2.27.5",

"eslint-plugin-tsdoc": "^0.2.17",
"jest": "29.4.1",
"jest-environment-jsdom": "^29.4.1",
"jest": "29.5.0",
"jest-environment-jsdom": "^29.5.0",
"madge": "6.0.0",
"prettier": "2.8.3",
"prettier": "2.8.4",
"trash-cli": "5.0.0",
"ts-jest": "^29.0.5",
"typedoc": "^0.23.24",
"typedoc": "^0.23.26",
"typescript": "4.9.5"
}
}

@@ -94,3 +94,3 @@ # client-run-queue

[API Docs](https://passfolio.github.io/client-run-queue/)
[API Docs](https://typescript-oss.github.io/client-run-queue/)

@@ -101,6 +101,4 @@ ## Thanks

client-run-queue is maintained by the team at [Passfolio](https://www.passfolio.com).
Be sure to check out our other [TypeScript OSS](https://github.com/TypeScript-OSS) projects as well.
Be sure to check out our other [Open Source @ Passfolio](https://github.com/Passfolio) projects as well.
<!-- Definitions -->

@@ -107,0 +105,0 @@

@@ -5,9 +5,9 @@ # Security Policy

| Version | Supported |
| ------- | ------------------ |
| 1.0.0 | :white_check_mark: |
| Version | Supported |
| --------- | ------------------ |
| >=1.0.0 | :white_check_mark: |
## Reporting a Vulnerability
Please report vulnerabilities to <security@passfolio.com> - which is private and monitored by our maintainers. We usually respond within 2-3 days, but if you believe your report is "critical", please include the word "critical" in your email subject.
Please report vulnerabilities to <typescript.oss@gmail.com> - which is private and monitored by our maintainers. We usually respond within 2-3 days, but if you believe your report is "critical", please include the word "critical" in your email subject.

@@ -14,0 +14,0 @@ When reporting an issue, where possible, please include:

/* istanbul ignore file */
import { RunQueue } from '../run-queue/queue';
import type { RunQueue } from '../run-queue/queue';

@@ -5,0 +5,0 @@ export interface StatsHandler {

@@ -8,6 +8,7 @@ import Heap from 'heap';

import { DEFAULT_CONTINUOUS_WORK_TIME_LIMIT_MSEC, DEFAULT_MAX_PARALLEL } from './internal/consts';
import { DoubleLinkedList, DoubleLinkedListNode } from './internal/DoubleLinkedList';
import type { DoubleLinkedListNode } from './internal/DoubleLinkedList';
import { DoubleLinkedList } from './internal/DoubleLinkedList';
import type { RunQueueEntry, RunQueueEntryResult } from './types/entry';
import { RunQueueOptions } from './types/options';
import { RunQueueScheduleOptions } from './types/schedule-options';
import type { RunQueueOptions } from './types/options';
import type { RunQueueScheduleOptions } from './types/schedule-options';

@@ -14,0 +15,0 @@ interface InternalRunQueueEntry<T = any> {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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