putout 27.3.0 → 27.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
+ 2022.08.24, v27.3.1
2
+
3
+ fix:
4
+ - putout: exit codes
5
+
1
6
  2022.08.24, v27.3.0
2
7
 
3
8
  fix:
@@ -10,10 +10,10 @@ module.exports = {
10
10
  WAS_STOP: 6,
11
11
  INVALID_OPTION: 7,
12
12
  CANNOT_LOAD_PROCESSOR: 8,
13
- UNHANDLED: 9,
13
+ CANNOT_LOAD_FORMATTER: 9,
14
14
  RULLER_WITH_FIX: 10,
15
15
  RULLER_NO_FILES: 11,
16
16
  INVALID_CONFIG: 12,
17
- CANNOT_LOAD_FORMATTER: 13,
17
+ UNHANDLED: 13,
18
18
  };
19
19
 
@@ -7,8 +7,8 @@ export const NO_FORMATTER = 5;
7
7
  export const WAS_STOP = 6;
8
8
  export const INVALID_OPTION = 7;
9
9
  export const CANNOT_LOAD_PROCESSOR = 8;
10
- export const UNHANDLED = 9;
10
+ export const CANNOT_LOAD_FORMATTER = 9;
11
11
  export const RULLER_WITH_FIX = 10;
12
12
  export const RULLER_NO_FILES = 11;
13
13
  export const INVALID_CONFIG = 12;
14
- export const CANNOT_LOAD_FORMATTER = 13;
14
+ export const UNHANDLED = 13;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "putout",
3
- "version": "27.3.0",
3
+ "version": "27.3.1",
4
4
  "type": "commonjs",
5
5
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
6
6
  "description": "🐊 Pluggable and configurable code transformer with built-in ESLint, Babel and support of js, jsx, typescript, flow, markdown, yaml and json",