putout 37.0.1 → 37.1.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.
Files changed (3) hide show
  1. package/ChangeLog +11 -0
  2. package/package.json +3 -1
  3. package/putout.json +1 -0
package/ChangeLog CHANGED
@@ -1,3 +1,14 @@
1
+ 2024.12.15, v37.1.1
2
+
3
+ feature:
4
+ - 0f248a3b7 putout: keywords: putout-script
5
+ - 98e289097 @putout/cli-cache: add support of incompatible cache file
6
+
7
+ 2024.12.13, v37.1.0
8
+
9
+ feature:
10
+ - 354221316 @putout/plugin-convert-expression-to-params: add
11
+
1
12
  2024.12.13, v37.0.1
2
13
 
3
14
  feature:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "putout",
3
- "version": "37.0.1",
3
+ "version": "37.1.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",
@@ -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",
@@ -218,6 +219,7 @@
218
219
  "keywords": [
219
220
  "ast",
220
221
  "transform",
222
+ "putout-script",
221
223
  "codemod",
222
224
  "eslint",
223
225
  "babel",
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",