@alwatr/async-queue 1.3.3 → 1.3.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 CHANGED
@@ -3,6 +3,12 @@
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.4](https://github.com/Alwatr/nanolib/compare/@alwatr/async-queue@1.3.3...@alwatr/async-queue@1.3.4) (2024-10-11)
7
+
8
+ ### Miscellaneous Chores
9
+
10
+ * include LICENSE and LEGAL files to publish ([09f366f](https://github.com/Alwatr/nanolib/commit/09f366f680bfa9fb26acb2cd1ccbc68c5a9e9ad8)) by @AliMD
11
+
6
12
  ## [1.3.3](https://github.com/Alwatr/nanolib/compare/@alwatr/async-queue@1.3.2...@alwatr/async-queue@1.3.3) (2024-10-11)
7
13
 
8
14
  **Note:** Version bump only for package @alwatr/async-queue
package/dist/main.cjs CHANGED
@@ -1,4 +1,4 @@
1
- /* @alwatr/async-queue v1.3.3 */
1
+ /* @alwatr/async-queue v1.3.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
- import_package_tracer.packageTracer.add("@alwatr/async-queue", "1.3.3");
29
+ import_package_tracer.packageTracer.add("@alwatr/async-queue", "1.3.4");
30
30
  var AsyncQueue = class {
31
31
  constructor() {
32
32
  /**
File without changes
package/dist/main.mjs CHANGED
@@ -1,9 +1,9 @@
1
- /* @alwatr/async-queue v1.3.3 */
1
+ /* @alwatr/async-queue v1.3.4 */
2
2
 
3
3
  // src/main.ts
4
4
  import { newFlatomise } from "@alwatr/flatomise";
5
5
  import { packageTracer } from "@alwatr/package-tracer";
6
- packageTracer.add("@alwatr/async-queue", "1.3.3");
6
+ packageTracer.add("@alwatr/async-queue", "1.3.4");
7
7
  var AsyncQueue = class {
8
8
  constructor() {
9
9
  /**
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alwatr/async-queue",
3
- "version": "1.3.3",
3
+ "version": "1.3.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": [
@@ -41,7 +41,8 @@
41
41
  },
42
42
  "license": "AGPL-3.0-only",
43
43
  "files": [
44
- "**/*.{js,mjs,cjs,map,d.ts,html,md}",
44
+ "**/*.{js,mjs,cjs,map,d.ts,html,md,LEGAL.txt}",
45
+ "LICENSE",
45
46
  "!demo/**/*"
46
47
  ],
47
48
  "publishConfig": {
@@ -74,16 +75,16 @@
74
75
  "clean": "rm -rfv dist *.tsbuildinfo"
75
76
  },
76
77
  "dependencies": {
77
- "@alwatr/flatomise": "^1.2.3",
78
- "@alwatr/package-tracer": "^1.0.3"
78
+ "@alwatr/flatomise": "^1.2.4",
79
+ "@alwatr/package-tracer": "^1.0.4"
79
80
  },
80
81
  "devDependencies": {
81
- "@alwatr/nano-build": "^2.0.0",
82
- "@alwatr/prettier-config": "^1.0.5",
83
- "@alwatr/tsconfig-base": "^1.3.1",
84
- "@alwatr/type-helper": "^2.0.1",
82
+ "@alwatr/nano-build": "^2.0.1",
83
+ "@alwatr/prettier-config": "^1.0.6",
84
+ "@alwatr/tsconfig-base": "^1.3.2",
85
+ "@alwatr/type-helper": "^2.0.2",
85
86
  "jest": "^29.7.0",
86
87
  "typescript": "^5.6.3"
87
88
  },
88
- "gitHead": "e0b3b4a47c02a395046982803b2e431c6ee3b0ab"
89
+ "gitHead": "2a35f99b0347aacdccf3b6f28b30ca902f02a2f1"
89
90
  }