@vyriy/jest-config 0.1.12 → 0.1.16
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/README.md +5 -3
- package/index.d.ts +1 -0
- package/index.js +0 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -38,10 +38,10 @@ export { default } from '@vyriy/jest-config';
|
|
|
38
38
|
|
|
39
39
|
If you need local overrides:
|
|
40
40
|
|
|
41
|
-
```
|
|
42
|
-
import baseConfig from '@vyriy/jest-config';
|
|
41
|
+
```ts
|
|
42
|
+
import baseConfig, { type Config } from '@vyriy/jest-config';
|
|
43
43
|
|
|
44
|
-
|
|
44
|
+
const config: Config = {
|
|
45
45
|
...baseConfig,
|
|
46
46
|
coverageThreshold: {
|
|
47
47
|
global: {
|
|
@@ -52,6 +52,8 @@ export default {
|
|
|
52
52
|
},
|
|
53
53
|
},
|
|
54
54
|
};
|
|
55
|
+
|
|
56
|
+
export default config;
|
|
55
57
|
```
|
|
56
58
|
|
|
57
59
|
## Current Vyriy Usage
|
package/index.d.ts
CHANGED
package/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vyriy/jest-config",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.16",
|
|
4
4
|
"description": "Shared Jest config for Vyriy projects",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./index.js",
|
|
7
7
|
"dependencies": {
|
|
8
|
+
"@swc/core": "^1.15.33",
|
|
8
9
|
"@swc/jest": "^0.2.39",
|
|
9
10
|
"jest": "^30.4.2",
|
|
10
11
|
"jest-environment-jsdom": "^30.4.1",
|
|
11
|
-
"jest-junit": "^17.0.0"
|
|
12
|
-
"ts-jest": "^29.4.9"
|
|
12
|
+
"jest-junit": "^17.0.0"
|
|
13
13
|
},
|
|
14
14
|
"license": "MIT",
|
|
15
15
|
"repository": {
|