@nx/jest 19.2.1 → 19.2.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/jest",
|
|
3
|
-
"version": "19.2.
|
|
3
|
+
"version": "19.2.3",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "The Nx Plugin for Jest contains executors and generators allowing your workspace to use the powerful Jest testing capabilities.",
|
|
6
6
|
"repository": {
|
|
@@ -37,8 +37,8 @@
|
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@jest/reporters": "^29.4.1",
|
|
39
39
|
"@jest/test-result": "^29.4.1",
|
|
40
|
-
"@nx/devkit": "19.2.
|
|
41
|
-
"@nx/js": "19.2.
|
|
40
|
+
"@nx/devkit": "19.2.3",
|
|
41
|
+
"@nx/js": "19.2.3",
|
|
42
42
|
"@phenomnomnominal/tsquery": "~5.0.1",
|
|
43
43
|
"chalk": "^4.1.0",
|
|
44
44
|
"identity-obj-proxy": "3.0.0",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"resolve.exports": "1.1.0",
|
|
50
50
|
"tslib": "^2.3.0",
|
|
51
51
|
"yargs-parser": "21.1.1",
|
|
52
|
-
"@nrwl/jest": "19.2.
|
|
52
|
+
"@nrwl/jest": "19.2.3"
|
|
53
53
|
},
|
|
54
54
|
"publishConfig": {
|
|
55
55
|
"access": "public"
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { type Tree } from '@nx/devkit';
|
|
2
2
|
export declare const jestConfigExtensions: readonly ["js", "ts", "mjs", "cjs", "mts", "cts"];
|
|
3
|
-
export type JestConfigExtension = typeof jestConfigExtensions[number];
|
|
3
|
+
export type JestConfigExtension = (typeof jestConfigExtensions)[number];
|
|
4
4
|
export declare const jestPresetExtensions: readonly ["js", "cjs", "mjs"];
|
|
5
|
-
export type JestPresetExtension = typeof jestPresetExtensions[number];
|
|
5
|
+
export type JestPresetExtension = (typeof jestPresetExtensions)[number];
|
|
6
6
|
export declare function getPresetExt(tree: Tree): JestPresetExtension;
|
|
7
7
|
export declare function findRootJestConfig(tree: Tree): string | null;
|
|
8
8
|
export declare function findRootJestPreset(tree: Tree): string | null;
|