redlint 4.4.1 → 5.0.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,13 @@
1
+ 2025.12.31, v5.0.0
2
+
3
+ feature:
4
+ - 0dacbf6 redlint: drop support of node < 22
5
+
6
+ 2025.12.31, v4.4.2
7
+
8
+ feature:
9
+ - 376533c redlint: try-to-catch v4.0.0
10
+
1
11
  2025.12.30, v4.4.1
2
12
 
3
13
  fix:
package/lib/dialog.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import enq from 'enquirer';
2
- import tryToCatch from 'try-to-catch';
2
+ import {tryToCatch} from 'try-to-catch';
3
3
 
4
4
  const {prompt} = enq;
5
5
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "redlint",
3
- "version": "4.4.1",
3
+ "version": "5.0.0",
4
4
  "type": "module",
5
5
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
6
6
  "description": "Lint Filesystem with 🐊Putout",
@@ -53,7 +53,7 @@
53
53
  "ora": "^9.0.0",
54
54
  "putout": "^41.2.0",
55
55
  "strip-ansi": "^7.1.0",
56
- "try-to-catch": "^3.0.1"
56
+ "try-to-catch": "^4.0.0"
57
57
  },
58
58
  "keywords": [
59
59
  "putout",
@@ -79,7 +79,7 @@
79
79
  },
80
80
  "license": "MIT",
81
81
  "engines": {
82
- "node": ">=20"
82
+ "node": ">=22"
83
83
  },
84
84
  "publishConfig": {
85
85
  "access": "public"