redlint 3.6.2 → 3.6.3

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
+ 2023.12.27, v3.6.3
2
+
3
+ fix:
4
+ - 4d12f30 menu: pack
5
+
1
6
  2023.12.27, v3.6.2
2
7
 
3
8
  fix:
package/lib/menu.js CHANGED
@@ -18,7 +18,7 @@ export const isScan = (a) => a === SCAN || a === 'scan';
18
18
  export const isScanDebug = (a) => a === SCAN_DEBUG || a === 'scan:debug';
19
19
  export const isFix = (a) => a === FIX || a === 'fix';
20
20
  export const isFixDebug = (a) => a === FIX_DEBUG || a === 'fix:debug';
21
- export const isPack = (a) => a === PACK || a === 'debug';
21
+ export const isPack = (a) => a === PACK || a === 'pack';
22
22
  export const isPackDebug = (a) => a === PACK_DEBUG || a === 'pack:debug';
23
23
  export const isExtract = (a) => a === EXTRACT || a === 'extract';
24
24
  export const isExtractDebug = (a) => a === EXTRACT_DEBUG || a === 'extract:debug';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "redlint",
3
- "version": "3.6.2",
3
+ "version": "3.6.3",
4
4
  "type": "module",
5
5
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
6
6
  "description": "Lint Filesystem with 🐊Putout",