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 +5 -0
- package/lib/cli/exit-codes.js +2 -2
- package/lib/cli/exit-codes.mjs +2 -2
- package/package.json +1 -1
package/ChangeLog
CHANGED
package/lib/cli/exit-codes.js
CHANGED
|
@@ -10,10 +10,10 @@ module.exports = {
|
|
|
10
10
|
WAS_STOP: 6,
|
|
11
11
|
INVALID_OPTION: 7,
|
|
12
12
|
CANNOT_LOAD_PROCESSOR: 8,
|
|
13
|
-
|
|
13
|
+
CANNOT_LOAD_FORMATTER: 9,
|
|
14
14
|
RULLER_WITH_FIX: 10,
|
|
15
15
|
RULLER_NO_FILES: 11,
|
|
16
16
|
INVALID_CONFIG: 12,
|
|
17
|
-
|
|
17
|
+
UNHANDLED: 13,
|
|
18
18
|
};
|
|
19
19
|
|
package/lib/cli/exit-codes.mjs
CHANGED
|
@@ -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
|
|
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
|
|
14
|
+
export const UNHANDLED = 13;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "putout",
|
|
3
|
-
"version": "27.3.
|
|
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",
|