putout 35.3.0 → 35.4.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 +7 -0
- package/package.json +2 -1
- package/putout.json +2 -1
package/ChangeLog
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
2024.02.14, v35.4.0
|
|
2
|
+
|
|
3
|
+
feature:
|
|
4
|
+
- bbe15dd4f @putout/plugin-remove-useless-array: add
|
|
5
|
+
- d4bd0385f @putout/plugin-remove-duplicate-keys: add support of ArrayExpression
|
|
6
|
+
- ca6331e6d @putout/operate: extract: add support of ArrayExpression
|
|
7
|
+
|
|
1
8
|
2024.02.14, v35.3.0
|
|
2
9
|
|
|
3
10
|
feature:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "putout",
|
|
3
|
-
"version": "35.
|
|
3
|
+
"version": "35.4.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",
|
|
@@ -148,6 +148,7 @@
|
|
|
148
148
|
"@putout/plugin-remove-unused-private-fields": "^2.0.0",
|
|
149
149
|
"@putout/plugin-remove-unused-variables": "^8.0.0",
|
|
150
150
|
"@putout/plugin-remove-useless-arguments": "^8.0.0",
|
|
151
|
+
"@putout/plugin-remove-useless-array": "^1.0.0",
|
|
151
152
|
"@putout/plugin-remove-useless-array-constructor": "^2.0.0",
|
|
152
153
|
"@putout/plugin-remove-useless-array-entries": "^1.0.0",
|
|
153
154
|
"@putout/plugin-remove-useless-assign": "^1.0.0",
|
package/putout.json
CHANGED
|
@@ -193,7 +193,9 @@
|
|
|
193
193
|
"remove-useless-variables",
|
|
194
194
|
"remove-useless-map",
|
|
195
195
|
"remove-useless-constructor",
|
|
196
|
+
"remove-useless-array",
|
|
196
197
|
"remove-useless-array-constructor",
|
|
198
|
+
"remove-useless-array-entries",
|
|
197
199
|
"remove-useless-continue",
|
|
198
200
|
"remove-useless-operand",
|
|
199
201
|
"remove-useless-arguments",
|
|
@@ -202,7 +204,6 @@
|
|
|
202
204
|
"remove-useless-return",
|
|
203
205
|
"remove-useless-functions",
|
|
204
206
|
"remove-useless-template-expressions",
|
|
205
|
-
"remove-useless-array-entries",
|
|
206
207
|
"remove-duplicate-case",
|
|
207
208
|
"remove-nested-blocks",
|
|
208
209
|
"remove-unreachable-code",
|