@anmiles/queue 1.0.1 → 1.0.3
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/.eslintrc.js +5 -0
- package/.vscode/settings.json +0 -2
- package/CHANGELOG.md +9 -0
- package/package.json +3 -3
package/.eslintrc.js
CHANGED
package/.vscode/settings.json
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.0.3](../../tags/v1.0.3) - 2023-05-08
|
|
9
|
+
### Changed
|
|
10
|
+
- Use shared eslint config * explicitly specify ignorePatterns
|
|
11
|
+
|
|
12
|
+
## [1.0.2](../../tags/v1.0.2) - 2023-05-07
|
|
13
|
+
### Changed
|
|
14
|
+
- Updated `@anmiles/eslint-config` and `@anmiles/sleep`
|
|
15
|
+
- Cleanup cSpell words
|
|
16
|
+
|
|
8
17
|
## [1.0.1](../../tags/v1.0.1) - 2023-05-07
|
|
9
18
|
### Changed
|
|
10
19
|
- Updated `@anmiles/eslint-config`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@anmiles/queue",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "Queue dispatcher that sequentially processes incoming items",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"queue",
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
"emittery": "^0.13.1"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@anmiles/eslint-config": "^1.0.
|
|
34
|
-
"@anmiles/sleep": "^1.0.
|
|
33
|
+
"@anmiles/eslint-config": "^1.0.6",
|
|
34
|
+
"@anmiles/sleep": "^1.0.1",
|
|
35
35
|
"@types/jest": "^29.5.1",
|
|
36
36
|
"@typescript-eslint/eslint-plugin": "^5.59.2",
|
|
37
37
|
"@typescript-eslint/parser": "^5.59.2",
|