redlint 3.11.0 → 3.11.2

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,17 @@
1
+ 2024.02.02, v3.11.2
2
+
3
+ feature:
4
+ - ec6557e redlint: @putout/processor-filesystem v4.0.0
5
+ - c4835f2 redlint: @putout/engine-runner v21.0.0
6
+
7
+ 2024.02.02, v3.11.1
8
+
9
+ fix:
10
+ - 779bf51 isConvertToJson
11
+
12
+ feature:
13
+ - 6edb2f7 redlint: @putout/plugin-filesystem v4.0.0
14
+
1
15
  2024.02.02, v3.11.0
2
16
 
3
17
  feature:
package/bin/redlint.js CHANGED
@@ -156,7 +156,6 @@ async function uiLoop(arg) {
156
156
  });
157
157
 
158
158
  process.stderr.write(dump);
159
-
160
159
  process.exit(1);
161
160
  }
162
161
 
package/lib/menu.js CHANGED
@@ -39,5 +39,5 @@ export const isConvert = (a) => a === CONVERT || a === 'convert';
39
39
  export const isConvertChosen = (a) => a === CONVERT_JS_TO_JSON || a === CONVERT_JSON_TO_JS;
40
40
  export const isConvertChosenDebug = (a) => a === CONVERT_JS_TO_JSON_DEBUG || a === CONVERT_JSON_TO_JS_DEBUG;
41
41
 
42
- export const isConvertToJson = (a) => a === CONVERT_JS_TO_JSON || a === CONVERT_JSON_TO_JS_DEBUG;
42
+ export const isConvertToJson = (a) => a === CONVERT_JS_TO_JSON || a === CONVERT_JS_TO_JSON_DEBUG;
43
43
  export const isConvertToJs = (a) => a === CONVERT_JSON_TO_JS || a === CONVERT_JSON_TO_JS_DEBUG;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "redlint",
3
- "version": "3.11.0",
3
+ "version": "3.11.2",
4
4
  "type": "module",
5
5
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
6
6
  "description": "Lint Filesystem with 🐊Putout",
@@ -31,12 +31,12 @@
31
31
  },
32
32
  "dependencies": {
33
33
  "@putout/cli-choose": "^1.1.1",
34
- "@putout/engine-runner": "^20.1.0",
34
+ "@putout/engine-runner": "^21.0.0",
35
35
  "@putout/formatter-codeframe": "^6.0.0",
36
36
  "@putout/formatter-dump": "^4.0.1",
37
37
  "@putout/operator-json": "^2.0.0",
38
- "@putout/plugin-filesystem": "^3.6.0",
39
- "@putout/processor-filesystem": "^3.0.0",
38
+ "@putout/plugin-filesystem": "^4.0.0",
39
+ "@putout/processor-filesystem": "^4.0.0",
40
40
  "chalk": "^5.3.0",
41
41
  "enquirer": "^2.4.1",
42
42
  "fullstore": "^3.0.0",