@xylabs/sdk-js 3.3.2 → 3.3.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/jest.config.ts +1 -1
- package/package.json +30 -30
package/jest.config.ts
CHANGED
|
@@ -8,7 +8,7 @@ const generateJestConfig = ({ esModules }: { esModules: string[] }) => {
|
|
|
8
8
|
preset: 'ts-jest/presets/default-esm',
|
|
9
9
|
setupFiles: ['dotenv/config'],
|
|
10
10
|
setupFilesAfterEnv: ['jest-sorted', 'jest-extended/all'],
|
|
11
|
-
testRegex:
|
|
11
|
+
testRegex: String.raw`(/__tests__/.*|(\.|/)((!perf\.)test|spec))\.tsx?$`,
|
|
12
12
|
testTimeout: 200_000,
|
|
13
13
|
transform: {
|
|
14
14
|
[`(${esModulesList}).+\\.js$`]: 'babel-jest',
|
package/package.json
CHANGED
|
@@ -38,38 +38,38 @@
|
|
|
38
38
|
"esm"
|
|
39
39
|
],
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@xylabs/api": "~3.3.
|
|
42
|
-
"@xylabs/array": "~3.3.
|
|
43
|
-
"@xylabs/assert": "~3.3.
|
|
44
|
-
"@xylabs/axios": "~3.3.
|
|
45
|
-
"@xylabs/crypto": "~3.3.
|
|
46
|
-
"@xylabs/decimal-precision": "~3.3.
|
|
47
|
-
"@xylabs/delay": "~3.3.
|
|
48
|
-
"@xylabs/error": "~3.3.
|
|
49
|
-
"@xylabs/eth-address": "~3.3.
|
|
50
|
-
"@xylabs/exists": "~3.3.
|
|
51
|
-
"@xylabs/forget": "~3.3.
|
|
52
|
-
"@xylabs/function-name": "~3.3.
|
|
53
|
-
"@xylabs/log": "~3.3.
|
|
54
|
-
"@xylabs/logger": "~3.3.
|
|
55
|
-
"@xylabs/object": "~3.3.
|
|
56
|
-
"@xylabs/platform": "~3.3.
|
|
57
|
-
"@xylabs/profile": "~3.3.
|
|
58
|
-
"@xylabs/promise": "~3.3.
|
|
59
|
-
"@xylabs/retry": "~3.3.
|
|
60
|
-
"@xylabs/set": "~3.3.
|
|
61
|
-
"@xylabs/static-implements": "~3.3.
|
|
62
|
-
"@xylabs/timer": "~3.3.
|
|
63
|
-
"@xylabs/url": "~3.3.
|
|
41
|
+
"@xylabs/api": "~3.3.3",
|
|
42
|
+
"@xylabs/array": "~3.3.3",
|
|
43
|
+
"@xylabs/assert": "~3.3.3",
|
|
44
|
+
"@xylabs/axios": "~3.3.3",
|
|
45
|
+
"@xylabs/crypto": "~3.3.3",
|
|
46
|
+
"@xylabs/decimal-precision": "~3.3.3",
|
|
47
|
+
"@xylabs/delay": "~3.3.3",
|
|
48
|
+
"@xylabs/error": "~3.3.3",
|
|
49
|
+
"@xylabs/eth-address": "~3.3.3",
|
|
50
|
+
"@xylabs/exists": "~3.3.3",
|
|
51
|
+
"@xylabs/forget": "~3.3.3",
|
|
52
|
+
"@xylabs/function-name": "~3.3.3",
|
|
53
|
+
"@xylabs/log": "~3.3.3",
|
|
54
|
+
"@xylabs/logger": "~3.3.3",
|
|
55
|
+
"@xylabs/object": "~3.3.3",
|
|
56
|
+
"@xylabs/platform": "~3.3.3",
|
|
57
|
+
"@xylabs/profile": "~3.3.3",
|
|
58
|
+
"@xylabs/promise": "~3.3.3",
|
|
59
|
+
"@xylabs/retry": "~3.3.3",
|
|
60
|
+
"@xylabs/set": "~3.3.3",
|
|
61
|
+
"@xylabs/static-implements": "~3.3.3",
|
|
62
|
+
"@xylabs/timer": "~3.3.3",
|
|
63
|
+
"@xylabs/url": "~3.3.3"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
66
|
"@types/jest": "^29.5.12",
|
|
67
67
|
"@types/supertest": "^6.0.2",
|
|
68
|
-
"@xylabs/config": "^3.10.
|
|
69
|
-
"@xylabs/eslint-config": "^3.10.
|
|
70
|
-
"@xylabs/ts-scripts-yarn3": "^3.10.
|
|
71
|
-
"@xylabs/tsconfig": "^3.10.
|
|
72
|
-
"@xylabs/tsconfig-jest": "^3.10.
|
|
68
|
+
"@xylabs/config": "^3.10.4",
|
|
69
|
+
"@xylabs/eslint-config": "^3.10.4",
|
|
70
|
+
"@xylabs/ts-scripts-yarn3": "^3.10.4",
|
|
71
|
+
"@xylabs/tsconfig": "^3.10.4",
|
|
72
|
+
"@xylabs/tsconfig-jest": "^3.10.4",
|
|
73
73
|
"dotenv": "^16.4.5",
|
|
74
74
|
"eslint": "^8.57.0",
|
|
75
75
|
"jest": "^29.7.0",
|
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
"url": "https://github.com/xylabs/sdk-js.git"
|
|
89
89
|
},
|
|
90
90
|
"sideEffects": false,
|
|
91
|
-
"packageManager": "yarn@4.
|
|
91
|
+
"packageManager": "yarn@4.2.2",
|
|
92
92
|
"engines": {
|
|
93
93
|
"node": ">=18.17.1"
|
|
94
94
|
},
|
|
@@ -100,6 +100,6 @@
|
|
|
100
100
|
"node": "18.17.1",
|
|
101
101
|
"yarn": "1.22.19"
|
|
102
102
|
},
|
|
103
|
-
"version": "3.3.
|
|
103
|
+
"version": "3.3.3",
|
|
104
104
|
"type": "module"
|
|
105
105
|
}
|