putout 37.0.1 → 37.1.0

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
+ 2024.12.13, v37.1.0
2
+
3
+ feature:
4
+ - 354221316 @putout/plugin-convert-expression-to-params: add
5
+
1
6
  2024.12.13, v37.0.1
2
7
 
3
8
  feature:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "putout",
3
- "version": "37.0.1",
3
+ "version": "37.1.0",
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",
@@ -103,6 +103,7 @@
103
103
  "@putout/plugin-convert-assignment-to-declaration": "^1.0.0",
104
104
  "@putout/plugin-convert-concat-to-flat": "^1.0.0",
105
105
  "@putout/plugin-convert-const-to-let": "^3.0.0",
106
+ "@putout/plugin-convert-expression-to-params": "^1.0.0",
106
107
  "@putout/plugin-convert-index-of-to-includes": "^2.0.0",
107
108
  "@putout/plugin-convert-object-assign-to-merge-spread": "^6.0.0",
108
109
  "@putout/plugin-convert-object-entries-to-array-entries": "^3.0.0",
package/putout.json CHANGED
@@ -248,6 +248,7 @@
248
248
  "simplify-ternary",
249
249
  "sort-imports-by-specifiers",
250
250
  "convert-const-to-let",
251
+ "convert-expression-to-params",
251
252
  "convert-assignment-to-declaration",
252
253
  "convert-apply-to-spread",
253
254
  "convert-concat-to-flat",