@scratch/task-herder 13.0.0 → 13.0.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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -72,10 +72,10 @@ queue
72
72
  cost: 2,
73
73
  },
74
74
  )
75
- .then(response => {
75
+ .then((response) => {
76
76
  // Handle successful response
77
77
  })
78
- .catch(error => {
78
+ .catch((error) => {
79
79
  // Handle error
80
80
  })
81
81
  ```
@@ -96,7 +96,7 @@ queue
96
96
  signal: controller.signal,
97
97
  },
98
98
  )
99
- .catch(error => {
99
+ .catch((error) => {
100
100
  if (error.name === 'AbortError') {
101
101
  // Handle task cancellation
102
102
  } else {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scratch/task-herder",
3
- "version": "13.0.0",
3
+ "version": "13.0.2",
4
4
  "description": "An asynchronous task runner with configurable rate limiting / throttling and concurrency control.",
5
5
  "keywords": [
6
6
  "rate limit",
@@ -44,8 +44,8 @@
44
44
  },
45
45
  "devDependencies": {
46
46
  "@vitest/coverage-v8": "4.0.18",
47
- "eslint": "9.39.3",
48
- "eslint-config-scratch": "13.0.2",
47
+ "eslint": "9.39.4",
48
+ "eslint-config-scratch": "14.0.4",
49
49
  "prettier": "3.8.1",
50
50
  "rimraf": "6.1.2",
51
51
  "typescript": "5.9.3",