putout 40.6.2 → 40.7.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 +19 -0
- package/package.json +3 -1
- package/putout.json +2 -0
package/ChangeLog
CHANGED
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
2025.08.29, v40.7.1
|
|
2
|
+
|
|
3
|
+
feature:
|
|
4
|
+
- d4bccaa75 @putout/plugin-convert-object-keys-to-object-entries: add
|
|
5
|
+
- 8b62a1edc @putout/plugin-apply-consistent-blocks: leadingComments: exclude
|
|
6
|
+
- 19abfe5dd @putout/engine-runner: replacer: watermark: false positive
|
|
7
|
+
|
|
8
|
+
2025.08.28, v40.7.0
|
|
9
|
+
|
|
10
|
+
fix:
|
|
11
|
+
- d1ec24cb1 @putout/plugin-minify: convert-let-to-var-inside-label -> convert-l
|
|
12
|
+
- 21a971c40 @putout/plugin-minify: merge-variables: no loc
|
|
13
|
+
- 1eadf70ed @putout/plugin-minify: merge-variables: no-use-before-declare
|
|
14
|
+
|
|
15
|
+
feature:
|
|
16
|
+
- b34698167 @putout/plugin-convert-object-entries-to-object-keys: add
|
|
17
|
+
- 8b9fa1570 @putout/plugin-minify: convert-let-to-var-inside-label: add
|
|
18
|
+
- 0facf1191 @putout/pugin-minify: merge-variables: declared in next line
|
|
19
|
+
|
|
1
20
|
2025.08.25, v40.6.2
|
|
2
21
|
|
|
3
22
|
feature:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "putout",
|
|
3
|
-
"version": "40.
|
|
3
|
+
"version": "40.7.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",
|
|
@@ -107,6 +107,8 @@
|
|
|
107
107
|
"@putout/plugin-convert-expression-to-params": "^1.0.0",
|
|
108
108
|
"@putout/plugin-convert-index-of-to-includes": "^2.0.0",
|
|
109
109
|
"@putout/plugin-convert-object-assign-to-merge-spread": "^6.0.0",
|
|
110
|
+
"@putout/plugin-convert-object-entries-to-object-keys": "^1.0.0",
|
|
111
|
+
"@putout/plugin-convert-object-keys-to-object-entries": "^1.0.0",
|
|
110
112
|
"@putout/plugin-convert-object-entries-to-array-entries": "^3.0.0",
|
|
111
113
|
"@putout/plugin-convert-quotes-to-backticks": "^5.0.0",
|
|
112
114
|
"@putout/plugin-convert-template-to-string": "^3.0.0",
|
package/putout.json
CHANGED
|
@@ -254,6 +254,8 @@
|
|
|
254
254
|
"convert-concat-to-flat",
|
|
255
255
|
"convert-arguments-to-rest",
|
|
256
256
|
"convert-object-assign-to-merge-spread",
|
|
257
|
+
"convert-object-entries-to-object-keys",
|
|
258
|
+
"convert-object-keys-to-object-entries",
|
|
257
259
|
"convert-to-arrow-function",
|
|
258
260
|
"convert-array-copy-to-slice",
|
|
259
261
|
"convert-template-to-string",
|