@alwatr/async-queue 5.5.2 → 5.5.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +10 -0
- package/dist/main.cjs +2 -2
- package/dist/main.mjs +2 -2
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,16 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [5.5.4](https://github.com/Alwatr/nanolib/compare/@alwatr/async-queue@5.5.3...@alwatr/async-queue@5.5.4) (2025-08-23)
|
|
7
|
+
|
|
8
|
+
### Code Refactoring
|
|
9
|
+
|
|
10
|
+
* Updated all package.json files in the project to change dependency version specifiers from "workspace:^" to "workspace:*" for consistency and to allow for more flexible version resolution. ([db6a4f7](https://github.com/Alwatr/nanolib/commit/db6a4f76deec2d1d8039978144e4bc51b6f1a0e3)) by @alimd
|
|
11
|
+
|
|
12
|
+
## <small>5.5.3 (2025-04-15)</small>
|
|
13
|
+
|
|
14
|
+
**Note:** Version bump only for package @alwatr/async-queue
|
|
15
|
+
|
|
6
16
|
## [5.5.2](https://github.com/Alwatr/nanolib/compare/@alwatr/async-queue@5.5.1...@alwatr/async-queue@5.5.2) (2025-04-01)
|
|
7
17
|
|
|
8
18
|
**Note:** Version bump only for package @alwatr/async-queue
|
package/dist/main.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* @alwatr/async-queue v5.5.
|
|
1
|
+
/* @alwatr/async-queue v5.5.4 */
|
|
2
2
|
"use strict";
|
|
3
3
|
var __defProp = Object.defineProperty;
|
|
4
4
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
@@ -26,7 +26,7 @@ __export(main_exports, {
|
|
|
26
26
|
module.exports = __toCommonJS(main_exports);
|
|
27
27
|
var import_flatomise = require("@alwatr/flatomise");
|
|
28
28
|
var import_package_tracer = require("@alwatr/package-tracer");
|
|
29
|
-
__dev_mode__: import_package_tracer.packageTracer.add("@alwatr/async-queue", "5.5.
|
|
29
|
+
__dev_mode__: import_package_tracer.packageTracer.add("@alwatr/async-queue", "5.5.4");
|
|
30
30
|
var AsyncQueue = class {
|
|
31
31
|
constructor() {
|
|
32
32
|
/**
|
package/dist/main.mjs
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
/* @alwatr/async-queue v5.5.
|
|
1
|
+
/* @alwatr/async-queue v5.5.4 */
|
|
2
2
|
|
|
3
3
|
// src/main.ts
|
|
4
4
|
import { newFlatomise } from "@alwatr/flatomise";
|
|
5
5
|
import { packageTracer } from "@alwatr/package-tracer";
|
|
6
|
-
__dev_mode__: packageTracer.add("@alwatr/async-queue", "5.5.
|
|
6
|
+
__dev_mode__: packageTracer.add("@alwatr/async-queue", "5.5.4");
|
|
7
7
|
var AsyncQueue = class {
|
|
8
8
|
constructor() {
|
|
9
9
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alwatr/async-queue",
|
|
3
|
-
"version": "5.5.
|
|
3
|
+
"version": "5.5.4",
|
|
4
4
|
"description": "A queue that executes async tasks in order like mutex and semaphore methodology for javascript and typescript.",
|
|
5
5
|
"author": "S. Ali Mihandoost <ali.mihandoost@gmail.com>",
|
|
6
6
|
"keywords": [
|
|
@@ -75,16 +75,16 @@
|
|
|
75
75
|
"clean": "rm -rfv dist *.tsbuildinfo"
|
|
76
76
|
},
|
|
77
77
|
"dependencies": {
|
|
78
|
-
"@alwatr/flatomise": "
|
|
79
|
-
"@alwatr/package-tracer": "
|
|
78
|
+
"@alwatr/flatomise": "5.5.4",
|
|
79
|
+
"@alwatr/package-tracer": "5.5.4"
|
|
80
80
|
},
|
|
81
81
|
"devDependencies": {
|
|
82
|
-
"@alwatr/nano-build": "
|
|
83
|
-
"@alwatr/prettier-config": "
|
|
84
|
-
"@alwatr/tsconfig-base": "
|
|
85
|
-
"@alwatr/type-helper": "
|
|
82
|
+
"@alwatr/nano-build": "5.5.4",
|
|
83
|
+
"@alwatr/prettier-config": "5.0.0",
|
|
84
|
+
"@alwatr/tsconfig-base": "5.0.0",
|
|
85
|
+
"@alwatr/type-helper": "5.4.2",
|
|
86
86
|
"jest": "^29.7.0",
|
|
87
|
-
"typescript": "^5.8.
|
|
87
|
+
"typescript": "^5.8.3"
|
|
88
88
|
},
|
|
89
|
-
"gitHead": "
|
|
89
|
+
"gitHead": "dd749e0b9adecdefa8e906669858c014b53bdab0"
|
|
90
90
|
}
|