@putout/test 6.5.0 → 6.6.0
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 -1
- package/package.json +2 -2
package/lib/processor/index.js
CHANGED
|
@@ -98,7 +98,7 @@ const createComparePlaces = (dir, options) => (operator) => async (filename, exp
|
|
|
98
98
|
|
|
99
99
|
module.exports._createComparePlaces = createComparePlaces;
|
|
100
100
|
|
|
101
|
-
async function process(filename, dir, {processors, plugins, extension, fix = true, noChange = false, processorRunners}) {
|
|
101
|
+
async function process(filename, dir, {printer, processors, plugins, extension, fix = true, noChange = false, processorRunners}) {
|
|
102
102
|
extension = addDot(extname(filename).slice(1) || extension);
|
|
103
103
|
filename = basename(filename, String(extension));
|
|
104
104
|
|
|
@@ -121,6 +121,7 @@ async function process(filename, dir, {processors, plugins, extension, fix = tru
|
|
|
121
121
|
fix,
|
|
122
122
|
name: inputName,
|
|
123
123
|
processFile: processFile({
|
|
124
|
+
printer,
|
|
124
125
|
fix,
|
|
125
126
|
}),
|
|
126
127
|
options,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@putout/test",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.6.0",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
|
|
6
6
|
"description": "Test runner for 🐊Putout plugins ",
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"@putout/plugin-remove-console": "*",
|
|
63
63
|
"@putout/plugin-remove-empty": "*",
|
|
64
64
|
"@putout/plugin-remove-unused-variables": "*",
|
|
65
|
-
"c8": "^
|
|
65
|
+
"c8": "^8.0.0",
|
|
66
66
|
"eslint": "^8.0.1",
|
|
67
67
|
"eslint-plugin-n": "^16.0.0",
|
|
68
68
|
"eslint-plugin-putout": "^17.0.0",
|