@nx/jest 23.2.0-beta.5 → 23.2.0-beta.7
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/dist/internal.d.ts +6 -0
- package/dist/internal.js +7 -1
- package/package.json +4 -4
package/dist/internal.d.ts
CHANGED
|
@@ -1,2 +1,8 @@
|
|
|
1
1
|
export { versions, getInstalledJestMajorVersion } from './src/utils/versions';
|
|
2
2
|
export { findRootJestPreset } from './src/utils/config/config-file';
|
|
3
|
+
/**
|
|
4
|
+
* The Oxlint plugins a Jest-tested project needs. Declared here so the linter
|
|
5
|
+
* does not have to know what a test runner requires; `@nx/js`'s
|
|
6
|
+
* `addLintingToProject` reads it through `ensurePackage`.
|
|
7
|
+
*/
|
|
8
|
+
export declare const oxlintPlugins: string[];
|
package/dist/internal.js
CHANGED
|
@@ -5,9 +5,15 @@
|
|
|
5
5
|
// internal consumers and may change without semver protection. Mirrors
|
|
6
6
|
// `@nx/devkit/internal`.
|
|
7
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
-
exports.findRootJestPreset = exports.getInstalledJestMajorVersion = exports.versions = void 0;
|
|
8
|
+
exports.oxlintPlugins = exports.findRootJestPreset = exports.getInstalledJestMajorVersion = exports.versions = void 0;
|
|
9
9
|
var versions_1 = require("./src/utils/versions");
|
|
10
10
|
Object.defineProperty(exports, "versions", { enumerable: true, get: function () { return versions_1.versions; } });
|
|
11
11
|
Object.defineProperty(exports, "getInstalledJestMajorVersion", { enumerable: true, get: function () { return versions_1.getInstalledJestMajorVersion; } });
|
|
12
12
|
var config_file_1 = require("./src/utils/config/config-file");
|
|
13
13
|
Object.defineProperty(exports, "findRootJestPreset", { enumerable: true, get: function () { return config_file_1.findRootJestPreset; } });
|
|
14
|
+
/**
|
|
15
|
+
* The Oxlint plugins a Jest-tested project needs. Declared here so the linter
|
|
16
|
+
* does not have to know what a test runner requires; `@nx/js`'s
|
|
17
|
+
* `addLintingToProject` reads it through `ensurePackage`.
|
|
18
|
+
*/
|
|
19
|
+
exports.oxlintPlugins = ['jest'];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/jest",
|
|
3
|
-
"version": "23.2.0-beta.
|
|
3
|
+
"version": "23.2.0-beta.7",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"files": [
|
|
@@ -117,11 +117,11 @@
|
|
|
117
117
|
"semver": "^7.6.3",
|
|
118
118
|
"tslib": "^2.3.0",
|
|
119
119
|
"yargs-parser": "21.1.1",
|
|
120
|
-
"@nx/devkit": "23.2.0-beta.
|
|
121
|
-
"@nx/js": "23.2.0-beta.
|
|
120
|
+
"@nx/devkit": "23.2.0-beta.7",
|
|
121
|
+
"@nx/js": "23.2.0-beta.7"
|
|
122
122
|
},
|
|
123
123
|
"devDependencies": {
|
|
124
|
-
"nx": "23.2.0-beta.
|
|
124
|
+
"nx": "23.2.0-beta.7"
|
|
125
125
|
},
|
|
126
126
|
"publishConfig": {
|
|
127
127
|
"access": "public"
|