redlint 5.3.0 → 5.3.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,8 @@
1
+ 2026.01.24, v5.3.1
2
+
3
+ feature:
4
+ - ddcb2dd redlint: -v: add support
5
+
1
6
  2026.01.24, v5.3.0
2
7
 
3
8
  feature:
package/lib/menu.js CHANGED
@@ -43,7 +43,7 @@ export const isExtractDebug = (a) => a === EXTRACT_DEBUG || a === 'extract:debug
43
43
  export const isGenerate = (a) => a === GENERATE || a === 'generate';
44
44
  export const isGenerateSimple = (a) => a === GENERATE_SIMPLE || a === 'generate:simple';
45
45
  export const isHelp = (a) => a === HELP || a === 'help';
46
- export const isVersion = (a) => a === VERSION || a === 'version';
46
+ export const isVersion = (a) => a === VERSION || a === 'version' || a === '-v';
47
47
  export const isTest = (a) => a === TEST || a === 'test';
48
48
  export const isDebug = (a) => a === DEBUG || a === 'debug';
49
49
  export const isBack = (a) => a === BACK || a === 'back';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "redlint",
3
- "version": "5.3.0",
3
+ "version": "5.3.1",
4
4
  "type": "module",
5
5
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
6
6
  "description": "Lint Filesystem with 🐊Putout",