putout 35.2.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.
Files changed (3) hide show
  1. package/ChangeLog +15 -0
  2. package/package.json +3 -2
  3. package/putout.json +2 -1
package/ChangeLog CHANGED
@@ -1,3 +1,18 @@
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
+
8
+ 2024.02.14, v35.3.0
9
+
10
+ feature:
11
+ - 196d7fa02 putout: @putout/plugin-remove-duplicate-keys v5.0.0
12
+ - 3603637f7 @putout/operate: extract: add support of MemberExpression
13
+ - 74b14c076 @putout/plugin-remove-duplicate-keys: drop support of 🐊 < 35
14
+ - 92be466f1 @putout/plugin-remove-duplicate-keys: add support of MemberExpression
15
+
1
16
  2024.02.13, v35.2.0
2
17
 
3
18
  feature:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "putout",
3
- "version": "35.2.0",
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",
@@ -137,7 +137,7 @@
137
137
  "@putout/plugin-remove-constant-conditions": "^4.0.0",
138
138
  "@putout/plugin-remove-debugger": "^6.0.0",
139
139
  "@putout/plugin-remove-duplicate-case": "^3.0.0",
140
- "@putout/plugin-remove-duplicate-keys": "^4.0.0",
140
+ "@putout/plugin-remove-duplicate-keys": "^5.0.0",
141
141
  "@putout/plugin-remove-empty": "^11.0.0",
142
142
  "@putout/plugin-remove-iife": "^4.0.0",
143
143
  "@putout/plugin-remove-nested-blocks": "^6.0.0",
@@ -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",