@anmiles/queue 4.0.0 → 4.0.1

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/package.json +7 -8
package/CHANGELOG.md CHANGED
@@ -5,6 +5,10 @@ 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
+ ## [4.0.1](../../tags/v4.0.1) - 2024-03-20
9
+ ### Changed
10
+ - Update dependencies
11
+
8
12
  ## [4.0.0](../../tags/v4.0.0) - 2024-03-16
9
13
  ### Changed
10
14
  - Update eslint config and raise minimum supported NodeJS version to match one in typescript-eslint plugin
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anmiles/queue",
3
- "version": "4.0.0",
3
+ "version": "4.0.1",
4
4
  "description": "Queue dispatcher that sequentially processes incoming items",
5
5
  "keywords": [
6
6
  "queue",
@@ -17,7 +17,6 @@
17
17
  "main": "dist/index.js",
18
18
  "scripts": {
19
19
  "build": "rimraf dist && tsc -p ./tsconfig.build.json",
20
- "build:ci": "tsc -noEmit -p ./tsconfig.build.json",
21
20
  "lint": "eslint .",
22
21
  "lint:fix": "npm run lint -- --fix",
23
22
  "test": "jest --verbose",
@@ -31,19 +30,19 @@
31
30
  "emittery": "^0.13.1"
32
31
  },
33
32
  "devDependencies": {
34
- "@anmiles/eslint-config": "^7.0.1",
35
- "@anmiles/sleep": "^4.0.0",
36
- "@anmiles/tsconfig": "^2.0.1",
33
+ "@anmiles/eslint-config": "^7.1.1",
34
+ "@anmiles/sleep": "^4.0.1",
35
+ "@anmiles/tsconfig": "^3.0.1",
37
36
  "@stylistic/eslint-plugin": "^1.7.0",
38
37
  "@types/jest": "^29.5.12",
39
- "@typescript-eslint/eslint-plugin": "^7.2.0",
40
- "@typescript-eslint/parser": "^7.2.0",
38
+ "@typescript-eslint/eslint-plugin": "^7.3.1",
39
+ "@typescript-eslint/parser": "^7.3.1",
41
40
  "eslint": "^8.57.0",
42
41
  "eslint-import-resolver-typescript": "^3.6.1",
43
42
  "eslint-plugin-align-assignments": "^1.1.2",
44
43
  "eslint-plugin-import": "^2.29.1",
45
44
  "eslint-plugin-jest": "^27.9.0",
46
- "eslint-plugin-jsonc": "^2.13.0",
45
+ "eslint-plugin-jsonc": "^2.14.1",
47
46
  "eslint-plugin-n": "^16.6.2",
48
47
  "eslint-plugin-promise": "^6.1.1",
49
48
  "jest": "^29.7.0",