redlint 6.5.0 → 6.5.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/ChangeLog CHANGED
@@ -1,3 +1,11 @@
1
+ 2026.06.05, v6.5.1
2
+
3
+ fix:
4
+ - 9819cdc redlint: convert: masterConvert: filename
5
+
6
+ feature:
7
+ - 3a8aa1f redlint: supertape v13.2.0
8
+
1
9
  2026.05.04, v6.5.0
2
10
 
3
11
  feature:
package/bin/redlint.js CHANGED
@@ -190,7 +190,7 @@ async function uiLoop(arg) {
190
190
  filename = await askFilename();
191
191
 
192
192
  if (filename)
193
- await masterConvert(fileTree.filename, arg, filesystem);
193
+ await masterConvert(filename, arg, filesystem);
194
194
 
195
195
  return;
196
196
  }
@@ -4,7 +4,7 @@ const {getTemplateValues} = operator;
4
4
  const TRANSFORM = 't.transform(__a)';
5
5
  const TRANSFORM_COUPLE = 't.transform(__a, __b)';
6
6
 
7
- export const report = (path) => parseValue(path);
7
+ export const report = parseValue;
8
8
 
9
9
  export const fix = () => {};
10
10
 
@@ -8,7 +8,7 @@ const {
8
8
  const TRANSFORM = 't.transform(__a)';
9
9
  const TRANSFORM_COUPLE = 't.transform(__a, __b)';
10
10
 
11
- export const report = (path) => parseValue(path);
11
+ export const report = parseValue;
12
12
 
13
13
  export const fix = () => {};
14
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "redlint",
3
- "version": "6.5.0",
3
+ "version": "6.5.1",
4
4
  "type": "module",
5
5
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
6
6
  "description": "Lint Filesystem with 🐊Putout",
@@ -81,7 +81,7 @@
81
81
  "madrun": "^13.0.0",
82
82
  "nodemon": "^3.0.1",
83
83
  "superc8": "^12.2.4",
84
- "supertape": "^12.0.7"
84
+ "supertape": "^13.2.0"
85
85
  },
86
86
  "license": "MIT",
87
87
  "engines": {