redlint 6.3.0 → 6.4.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/ChangeLog CHANGED
@@ -1,3 +1,8 @@
1
+ 2026.04.15, v6.4.0
2
+
3
+ feature:
4
+ - d3ae7e5 redlint: exports: simple
5
+
1
6
  2026.04.14, v6.3.0
2
7
 
3
8
  feature:
package/bin/read-stdin.js CHANGED
@@ -3,6 +3,7 @@ import process from 'node:process';
3
3
 
4
4
  export const readStdin = promisify((overrides, fn) => {
5
5
  const {stdin} = fn ? overrides : process;
6
+
6
7
  fn = fn || overrides;
7
8
 
8
9
  stdin.setEncoding('utf8');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "redlint",
3
- "version": "6.3.0",
3
+ "version": "6.4.0",
4
4
  "type": "module",
5
5
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
6
6
  "description": "Lint Filesystem with 🐊Putout",
@@ -10,7 +10,8 @@
10
10
  "redlint": "bin/redlint.js"
11
11
  },
12
12
  "exports": {
13
- ".": "./lib/redlint.js"
13
+ ".": "./lib/redlint.js",
14
+ "./simple": "./lib/simple.js"
14
15
  },
15
16
  "imports": {
16
17
  "#edit": "./lib/edit/edit.js",