@putout/test 14.4.2 → 15.0.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.
- package/lib/processor/index.js +2 -2
- package/package.json +5 -5
package/lib/processor/index.js
CHANGED
|
@@ -15,7 +15,7 @@ const {
|
|
|
15
15
|
const {tryToCatch} = require('try-to-catch');
|
|
16
16
|
|
|
17
17
|
const test = require('supertape');
|
|
18
|
-
const
|
|
18
|
+
const {initProcessFile} = require('@putout/cli-process-file');
|
|
19
19
|
const {runProcessors} = require('@putout/engine-processor');
|
|
20
20
|
|
|
21
21
|
const isStr = (a) => typeof a === 'string';
|
|
@@ -156,7 +156,7 @@ async function process(filename, dir, config) {
|
|
|
156
156
|
} = await runProcessors({
|
|
157
157
|
fix,
|
|
158
158
|
name: inputName,
|
|
159
|
-
processFile:
|
|
159
|
+
processFile: initProcessFile({
|
|
160
160
|
printer,
|
|
161
161
|
fix,
|
|
162
162
|
}),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@putout/test",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "15.0.1",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
|
|
6
6
|
"description": "Test runner for 🐊Putout plugins ",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"report": "madrun report"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@putout/cli-process-file": "^
|
|
41
|
+
"@putout/cli-process-file": "^6.0.0",
|
|
42
42
|
"@putout/engine-processor": "*",
|
|
43
43
|
"@putout/engine-reporter": "^8.0.1",
|
|
44
44
|
"@putout/engine-runner": "*",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"currify": "^4.0.0",
|
|
48
48
|
"montag": "^1.2.1",
|
|
49
49
|
"putout": "*",
|
|
50
|
-
"supertape": "^
|
|
50
|
+
"supertape": "^12.0.0",
|
|
51
51
|
"try-catch": "^4.0.0",
|
|
52
52
|
"try-to-catch": "^4.0.0"
|
|
53
53
|
},
|
|
@@ -72,12 +72,12 @@
|
|
|
72
72
|
"eslint": "^10.0.0-alpha.0",
|
|
73
73
|
"eslint-plugin-n": "^17.0.0",
|
|
74
74
|
"eslint-plugin-putout": "^29.0.0",
|
|
75
|
-
"madrun": "^
|
|
75
|
+
"madrun": "^12.0.0",
|
|
76
76
|
"nodemon": "^3.0.1"
|
|
77
77
|
},
|
|
78
78
|
"license": "MIT",
|
|
79
79
|
"engines": {
|
|
80
|
-
"node": ">=
|
|
80
|
+
"node": ">=22"
|
|
81
81
|
},
|
|
82
82
|
"publishConfig": {
|
|
83
83
|
"access": "public"
|