putout 36.0.2 → 36.0.4

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,20 @@
1
+ 2024.08.16, v36.0.4
2
+
3
+ feature:
4
+ - 935c62d3c putout: @putout/plugin-eslint v9.0.0
5
+ - 6af8373a3 @putout/plugin-eslint: drop support of 🐊 < 36
6
+ - d7265d182 @putout/plugin-eslint: remove-useless-properties: add
7
+
8
+ 2024.07.19, v36.0.3
9
+
10
+ feature:
11
+ - d6ac432fc putout: @putout/cli-validate-args v2.0.0
12
+ - 00dc4ae46 @putout/cli-validate-args: convert to ESM
13
+ - 14e951e58 @putout/cli-validate-args: drop support of 🐊 < 36
14
+ - dcfb1bb27 @putout/cli-validate-args: just-kebab-case v4.2.0
15
+ - 109c8dd57 @putout/engine-parser: hermes-parser v0.23.0
16
+ - 8f5dba57f @putout/codemod-convert-pascal-to-camel: just-camel-case v6.2.0
17
+
1
18
  2024.07.19, v36.0.2
2
19
 
3
20
  feature:
package/lib/cli/index.js CHANGED
@@ -15,7 +15,6 @@ const {
15
15
  defaultProcessors,
16
16
  } = require('@putout/engine-processor');
17
17
 
18
- const validateArgs = require('@putout/cli-validate-args');
19
18
  const {createCache} = require('@putout/cli-cache');
20
19
  const keyPress = require('@putout/cli-keypress');
21
20
 
@@ -113,6 +112,7 @@ module.exports = async ({argv, halt, log, write, logError, readFile, writeFile,
113
112
  ...argvConfig.number,
114
113
  ];
115
114
 
115
+ const {validateArgs} = await import('@putout/cli-validate-args');
116
116
  const validationError = await validateArgs(args, optionsList);
117
117
 
118
118
  if (validationError)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "putout",
3
- "version": "36.0.2",
3
+ "version": "36.0.4",
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",
@@ -58,7 +58,7 @@
58
58
  "@putout/cli-match": "^2.0.0",
59
59
  "@putout/cli-ruler": "^3.0.0",
60
60
  "@putout/cli-staged": "^1.0.0",
61
- "@putout/cli-validate-args": "^1.0.0",
61
+ "@putout/cli-validate-args": "^2.0.0",
62
62
  "@putout/compare": "^14.0.0",
63
63
  "@putout/engine-loader": "^13.0.0",
64
64
  "@putout/engine-parser": "^10.0.0",
@@ -116,7 +116,7 @@
116
116
  "@putout/plugin-declare": "^4.0.0",
117
117
  "@putout/plugin-declare-before-reference": "^4.0.0",
118
118
  "@putout/plugin-declare-imports-first": "^2.0.0",
119
- "@putout/plugin-eslint": "^8.0.0",
119
+ "@putout/plugin-eslint": "^9.0.0",
120
120
  "@putout/plugin-extract-object-properties": "^9.0.0",
121
121
  "@putout/plugin-extract-sequence-expressions": "^3.0.0",
122
122
  "@putout/plugin-filesystem": "^5.0.0",