@alwatr/async-queue 1.3.7 → 1.3.8

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 CHANGED
@@ -3,6 +3,10 @@
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
+ ## [1.3.8](https://github.com/Alwatr/nanolib/compare/@alwatr/async-queue@1.3.7...@alwatr/async-queue@1.3.8) (2024-11-02)
7
+
8
+ **Note:** Version bump only for package @alwatr/async-queue
9
+
6
10
  ## [1.3.7](https://github.com/Alwatr/nanolib/compare/@alwatr/async-queue@1.3.6...@alwatr/async-queue@1.3.7) (2024-10-25)
7
11
 
8
12
  **Note:** Version bump only for package @alwatr/async-queue
package/dist/main.cjs CHANGED
@@ -1,4 +1,4 @@
1
- /* @alwatr/async-queue v1.3.7 */
1
+ /* @alwatr/async-queue v1.3.8 */
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", "1.3.7");
29
+ __dev_mode__: import_package_tracer.packageTracer.add("@alwatr/async-queue", "1.3.8");
30
30
  var AsyncQueue = class {
31
31
  constructor() {
32
32
  /**
package/dist/main.mjs CHANGED
@@ -1,9 +1,9 @@
1
- /* @alwatr/async-queue v1.3.7 */
1
+ /* @alwatr/async-queue v1.3.8 */
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", "1.3.7");
6
+ __dev_mode__: packageTracer.add("@alwatr/async-queue", "1.3.8");
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": "1.3.7",
3
+ "version": "1.3.8",
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": "^1.2.7",
79
- "@alwatr/package-tracer": "^1.0.7"
78
+ "@alwatr/flatomise": "^1.2.8",
79
+ "@alwatr/package-tracer": "^1.0.8"
80
80
  },
81
81
  "devDependencies": {
82
- "@alwatr/nano-build": "^2.0.3",
82
+ "@alwatr/nano-build": "^2.0.4",
83
83
  "@alwatr/prettier-config": "^1.0.6",
84
84
  "@alwatr/tsconfig-base": "^1.3.3",
85
85
  "@alwatr/type-helper": "^2.0.3",
86
86
  "jest": "^29.7.0",
87
87
  "typescript": "^5.6.3"
88
88
  },
89
- "gitHead": "a1e430a02f9a5711fc43f19012091bcd8806c4f9"
89
+ "gitHead": "5aecc962a161034aa9213dcc5fb3c1cece9eaca2"
90
90
  }