@restorecommerce/scs-jobs 0.3.1 → 0.3.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 +12 -0
- package/eslint.config.mjs +2 -20
- package/package.json +7 -7
- package/tsconfig-base.json +1 -1
- package/tsconfig.test.json +1 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
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
|
+
## [0.3.2](https://github.com/restorecommerce/libs/compare/@restorecommerce/scs-jobs@0.3.1...@restorecommerce/scs-jobs@0.3.2) (2026-07-03)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **deps:** downgrade vite@7 due to breaking support of decorators in vitest ([183701d](https://github.com/restorecommerce/libs/commit/183701d5927d39ffda75f33f0dc162e1f3490183))
|
|
12
|
+
* **lint:** fix new strict lint errors ([c6bc716](https://github.com/restorecommerce/libs/commit/c6bc7161eaf68a7253bd34ca7f38b14502c2eefe))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
6
18
|
## [0.3.1](https://github.com/restorecommerce/libs/compare/@restorecommerce/scs-jobs@0.3.0...@restorecommerce/scs-jobs@0.3.1) (2026-06-16)
|
|
7
19
|
|
|
8
20
|
|
package/eslint.config.mjs
CHANGED
|
@@ -1,21 +1,3 @@
|
|
|
1
|
-
// @ts-
|
|
2
|
-
|
|
3
|
-
import eslint from '@eslint/js';
|
|
4
|
-
import tseslint from 'typescript-eslint';
|
|
5
|
-
|
|
6
|
-
const rules = tseslint.config(
|
|
7
|
-
eslint.configs.recommended,
|
|
8
|
-
...tseslint.configs.recommended,
|
|
9
|
-
);
|
|
10
|
-
|
|
11
|
-
rules.push(
|
|
12
|
-
{
|
|
13
|
-
"rules": {
|
|
14
|
-
"@typescript-eslint/no-explicit-any": "off",
|
|
15
|
-
"@typescript-eslint/no-unused-vars": "off",
|
|
16
|
-
"prefer-rest-params": "off",
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
);
|
|
20
|
-
|
|
1
|
+
// @ts-nocheck
|
|
2
|
+
import { rules } from '@restorecommerce/dev/eslint.config.mjs';
|
|
21
3
|
export default rules;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@restorecommerce/scs-jobs",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"description": "Restorecommerce scs jobs",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"typings": "lib/index.d.ts",
|
|
@@ -19,15 +19,15 @@
|
|
|
19
19
|
],
|
|
20
20
|
"type": "module",
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@restorecommerce/grpc-client": "^2.3.
|
|
23
|
-
"@restorecommerce/kafka-client": "^1.4.
|
|
24
|
-
"@restorecommerce/logger": "^1.4.
|
|
25
|
-
"@restorecommerce/rc-grpc-clients": "^5.2.
|
|
22
|
+
"@restorecommerce/grpc-client": "^2.3.2",
|
|
23
|
+
"@restorecommerce/kafka-client": "^1.4.2",
|
|
24
|
+
"@restorecommerce/logger": "^1.4.2",
|
|
25
|
+
"@restorecommerce/rc-grpc-clients": "^5.2.2",
|
|
26
26
|
"bullmq": "^5.78.0",
|
|
27
27
|
"redis": "4.7.0"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@restorecommerce/dev": "^0.3.
|
|
30
|
+
"@restorecommerce/dev": "^0.3.1",
|
|
31
31
|
"eslint": "^10.4.1",
|
|
32
32
|
"eslint-plugin-prefer-arrow-functions": "^3.9.1",
|
|
33
33
|
"npm-run-all": "^4.1.5"
|
|
@@ -54,5 +54,5 @@
|
|
|
54
54
|
"engines": {
|
|
55
55
|
"node": ">= 18.0.0"
|
|
56
56
|
},
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "d953e4d4b9fd9ab2d4349a387e1dab43471eb512"
|
|
58
58
|
}
|
package/tsconfig-base.json
CHANGED