Skip to content

Commit

Permalink
Updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Ehman authored and Jonathan Ehman committed Aug 8, 2024
1 parent 83a7dd9 commit 13ebeb4
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion dist/processQueue.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ var ProcessQueue = /** @class */ (function () {
};
this.doneProcessing = function (id) {
if (id !== undefined) {
_this._inProcess["delete"](id);
_this._inProcess.delete(id);
return;
}
_this._inProcess.clear();
Expand Down
2 changes: 1 addition & 1 deletion dist/processQueue.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ var ProcessQueue = /** @class */ (function () {
};
this.doneProcessing = function (id) {
if (id !== undefined) {
_this._inProcess["delete"](id);
_this._inProcess.delete(id);
return;
}
_this._inProcess.clear();
Expand Down
2 changes: 1 addition & 1 deletion dist/processQueue.umd.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
};
this.doneProcessing = function (id) {
if (id !== undefined) {
_this._inProcess["delete"](id);
_this._inProcess.delete(id);
return;
}
_this._inProcess.clear();
Expand Down
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@
"homepage": "https://github.com/mdaemon-technologies/process-queue#readme",
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.4.0",
"jest": "^29.4.3",
"rollup": "^3.21.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"rollup": "^4.20.0",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"dependencies": {
"tslib": "^2.5.0"
"tslib": "^2.6.3"
}
}

0 comments on commit 13ebeb4

Please sign in to comment.