putout 35.35.0 → 35.35.2
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 +17 -0
- package/package.json +3 -1
- package/putout.json +3 -0
package/ChangeLog
CHANGED
|
@@ -1,3 +1,20 @@
|
|
|
1
|
+
2024.06.18, v35.35.2
|
|
2
|
+
|
|
3
|
+
feature:
|
|
4
|
+
- 1ef73c58b @putout/plugin-group-imports-by-source: add
|
|
5
|
+
- 929ef6089 @putout/plugin-putout: add-traverse-args: listStore
|
|
6
|
+
- 3c530d7ce @putout/plugin-promises: remove-useless-await: exclude TaggedTemplateExpression
|
|
7
|
+
- 9d2090f74 @putout/engine-parser: hermes-parser v0.22.0
|
|
8
|
+
|
|
9
|
+
2024.06.17, v35.35.1
|
|
10
|
+
|
|
11
|
+
feature:
|
|
12
|
+
- d18ab8900 @putout/plugin-convert-assignment-to-declaration: binding
|
|
13
|
+
- 0b22cf083 @putout/plugin-convert-assignment-to-declaration: add
|
|
14
|
+
- 26518dcfb @putout/plugin-minify: merge-assignment-expressions: add
|
|
15
|
+
- 2cd355f72 @putout/plugin-split-assignment-expressions: duplicate-reuse
|
|
16
|
+
- 385a6ce21 @putout/plugin-split-assignment-expressions: exclude Function
|
|
17
|
+
|
|
1
18
|
2024.06.13, v35.35.0
|
|
2
19
|
|
|
3
20
|
feature:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "putout",
|
|
3
|
-
"version": "35.35.
|
|
3
|
+
"version": "35.35.2",
|
|
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",
|
|
@@ -100,6 +100,7 @@
|
|
|
100
100
|
"@putout/plugin-convert-array-copy-to-slice": "^3.0.0",
|
|
101
101
|
"@putout/plugin-convert-assignment-to-arrow-function": "^1.0.0",
|
|
102
102
|
"@putout/plugin-convert-assignment-to-comparison": "^2.0.0",
|
|
103
|
+
"@putout/plugin-convert-assignment-to-declaration": "^1.0.0",
|
|
103
104
|
"@putout/plugin-convert-concat-to-flat": "^1.0.0",
|
|
104
105
|
"@putout/plugin-convert-const-to-let": "^2.0.0",
|
|
105
106
|
"@putout/plugin-convert-index-of-to-includes": "^2.0.0",
|
|
@@ -122,6 +123,7 @@
|
|
|
122
123
|
"@putout/plugin-generators": "^1.0.0",
|
|
123
124
|
"@putout/plugin-github": "^12.0.0",
|
|
124
125
|
"@putout/plugin-gitignore": "^6.0.0",
|
|
126
|
+
"@putout/plugin-group-imports-by-source": "^1.0.0",
|
|
125
127
|
"@putout/plugin-logical-expressions": "^6.0.0",
|
|
126
128
|
"@putout/plugin-madrun": "^18.0.0",
|
|
127
129
|
"@putout/plugin-math": "^2.0.0",
|
package/putout.json
CHANGED
|
@@ -45,6 +45,7 @@
|
|
|
45
45
|
"typescript/rename-file-mts-to-ts": "on"
|
|
46
46
|
},
|
|
47
47
|
"*.md": {
|
|
48
|
+
"convert-assignment-to-declaration": "off",
|
|
48
49
|
"conditions/apply-consistent-blocks": "off",
|
|
49
50
|
"conditions/convert-comparison-to-boolean": "off",
|
|
50
51
|
"conditions/remove-constant": "off",
|
|
@@ -194,6 +195,7 @@
|
|
|
194
195
|
"apply-overrides",
|
|
195
196
|
"extract-object-properties",
|
|
196
197
|
"extract-sequence-expressions",
|
|
198
|
+
"group-imports-by-source",
|
|
197
199
|
"madrun",
|
|
198
200
|
"maybe",
|
|
199
201
|
"webpack",
|
|
@@ -236,6 +238,7 @@
|
|
|
236
238
|
"simplify-ternary",
|
|
237
239
|
"sort-imports-by-specifiers",
|
|
238
240
|
"convert-const-to-let",
|
|
241
|
+
"convert-assignment-to-declaration",
|
|
239
242
|
"convert-apply-to-spread",
|
|
240
243
|
"convert-concat-to-flat",
|
|
241
244
|
"convert-arguments-to-rest",
|