eslint-plugin-jest 27.6.0 → 27.6.1
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.
|
@@ -3,10 +3,15 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.preprocess = exports.postprocess = void 0;
|
|
6
|
+
exports.preprocess = exports.postprocess = exports.meta = void 0;
|
|
7
|
+
var _package = require("../../package.json");
|
|
7
8
|
// https://eslint.org/docs/developer-guide/working-with-plugins#processors-in-plugins
|
|
8
9
|
// https://github.com/typescript-eslint/typescript-eslint/issues/808
|
|
9
10
|
|
|
11
|
+
const meta = exports.meta = {
|
|
12
|
+
name: _package.name,
|
|
13
|
+
version: _package.version
|
|
14
|
+
};
|
|
10
15
|
const preprocess = source => [source];
|
|
11
16
|
exports.preprocess = preprocess;
|
|
12
17
|
const postprocess = messages =>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eslint-plugin-jest",
|
|
3
|
-
"version": "27.6.
|
|
3
|
+
"version": "27.6.1",
|
|
4
4
|
"description": "ESLint rules for Jest",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"eslint",
|
|
@@ -154,11 +154,14 @@
|
|
|
154
154
|
"optional": true
|
|
155
155
|
}
|
|
156
156
|
},
|
|
157
|
-
"packageManager": "yarn@3.
|
|
157
|
+
"packageManager": "yarn@3.7.0",
|
|
158
158
|
"engines": {
|
|
159
159
|
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
|
|
160
160
|
},
|
|
161
161
|
"publishConfig": {
|
|
162
162
|
"provenance": true
|
|
163
|
+
},
|
|
164
|
+
"resolutions": {
|
|
165
|
+
"typescript": "~5.2.2"
|
|
163
166
|
}
|
|
164
167
|
}
|