@sapphire/async-queue 1.5.2-next.fef82a89.0 → 1.5.2
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
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
# [@sapphire/async-queue@1.5.2](https://github.com/sapphiredev/utilities/compare/@sapphire/async-queue@1.5.2...@sapphire/async-queue@1.5.2) - (2024-01-19)
|
|
6
|
+
|
|
7
|
+
## 🐛 Bug Fixes
|
|
8
|
+
|
|
9
|
+
- Fixed commonjs typings export mapping (#707) ([216ff02](https://github.com/sapphiredev/utilities/commit/216ff0260d63a9590357f9a5069f1ae2b34eaf5d))
|
|
10
|
+
|
|
5
11
|
# [@sapphire/async-queue@1.5.1](https://github.com/sapphiredev/utilities/compare/@sapphire/async-queue@1.5.1...@sapphire/async-queue@1.5.1) - (2023-12-04)
|
|
6
12
|
|
|
7
13
|
## 🏠 Refactor
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sapphire/async-queue",
|
|
3
|
-
"version": "1.5.2
|
|
3
|
+
"version": "1.5.2",
|
|
4
4
|
"description": "Sequential asynchronous lock-based queue for promises",
|
|
5
5
|
"author": "@sapphire",
|
|
6
6
|
"license": "MIT",
|
|
@@ -8,14 +8,14 @@
|
|
|
8
8
|
"module": "dist/esm/index.mjs",
|
|
9
9
|
"browser": "dist/iife/index.global.js",
|
|
10
10
|
"unpkg": "dist/iife/index.global.js",
|
|
11
|
-
"types": "dist/cjs/index.d.
|
|
11
|
+
"types": "dist/cjs/index.d.cts",
|
|
12
12
|
"exports": {
|
|
13
13
|
"import": {
|
|
14
14
|
"types": "./dist/esm/index.d.mts",
|
|
15
15
|
"default": "./dist/esm/index.mjs"
|
|
16
16
|
},
|
|
17
17
|
"require": {
|
|
18
|
-
"types": "./dist/cjs/index.d.
|
|
18
|
+
"types": "./dist/cjs/index.d.cts",
|
|
19
19
|
"default": "./dist/cjs/index.cjs"
|
|
20
20
|
},
|
|
21
21
|
"browser": "./dist/iife/index.global.js"
|
|
@@ -26,7 +26,8 @@
|
|
|
26
26
|
"test": "vitest run",
|
|
27
27
|
"lint": "eslint src tests --ext ts --fix -c ../../.eslintrc",
|
|
28
28
|
"docs": "typedoc-json-parser",
|
|
29
|
-
"build": "tsup",
|
|
29
|
+
"build": "tsup && yarn build:rename-cjs-index",
|
|
30
|
+
"build:rename-cjs-index": "node ../../scripts/rename-cjs-index.mjs",
|
|
30
31
|
"prepack": "yarn build",
|
|
31
32
|
"bump": "cliff-jumper",
|
|
32
33
|
"check-update": "cliff-jumper --dry-run"
|
|
@@ -61,11 +62,11 @@
|
|
|
61
62
|
},
|
|
62
63
|
"devDependencies": {
|
|
63
64
|
"@favware/cliff-jumper": "^2.2.3",
|
|
64
|
-
"@vitest/coverage-v8": "^1.
|
|
65
|
+
"@vitest/coverage-v8": "^1.2.1",
|
|
65
66
|
"tsup": "^8.0.1",
|
|
66
|
-
"typedoc": "^0.25.
|
|
67
|
+
"typedoc": "^0.25.7",
|
|
67
68
|
"typedoc-json-parser": "^9.0.1",
|
|
68
69
|
"typescript": "^5.3.3",
|
|
69
|
-
"vitest": "^1.
|
|
70
|
+
"vitest": "^1.2.1"
|
|
70
71
|
}
|
|
71
72
|
}
|
|
File without changes
|