putout 35.30.1 → 35.32.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 +13 -0
  2. package/package.json +3 -2
  3. package/putout.json +1 -0
package/ChangeLog CHANGED
@@ -1,3 +1,16 @@
1
+ 2024.05.28, v35.32.0
2
+
3
+ feature:
4
+ - d35f46d6b putout: @putout/plugin-remove-useless-variables v11.0.0
5
+ - 4d26f83f8 @putout/plugin-remove-useless-variables: duplicate: add
6
+ - 959bf46e2 @putout/plugin-remove-useless-variables: drop support of 🐊 < 35
7
+ - 03bbad848 @putout/compare: __body: add support of FunctionDeclaration
8
+
9
+ 2024.05.28, v35.31.0
10
+
11
+ feature:
12
+ - 02f76db91 @putout/plugin-split-assignment-expressions: add
13
+
1
14
  2024.05.27, v35.30.1
2
15
 
3
16
  feature:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "putout",
3
- "version": "35.30.1",
3
+ "version": "35.32.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",
@@ -167,12 +167,13 @@
167
167
  "@putout/plugin-remove-useless-return": "^6.0.0",
168
168
  "@putout/plugin-remove-useless-spread": "^11.0.0",
169
169
  "@putout/plugin-remove-useless-template-expressions": "^2.0.0",
170
- "@putout/plugin-remove-useless-variables": "^10.0.0",
170
+ "@putout/plugin-remove-useless-variables": "^11.0.0",
171
171
  "@putout/plugin-reuse-duplicate-init": "^5.0.0",
172
172
  "@putout/plugin-simplify-assignment": "^3.0.0",
173
173
  "@putout/plugin-simplify-boolean-return": "^1.0.0",
174
174
  "@putout/plugin-simplify-ternary": "^7.0.0",
175
175
  "@putout/plugin-sort-imports-by-specifiers": "^1.0.0",
176
+ "@putout/plugin-split-assignment-expressions": "^1.0.0",
176
177
  "@putout/plugin-split-nested-destructuring": "^3.0.0",
177
178
  "@putout/plugin-split-variable-declarations": "^3.0.0",
178
179
  "@putout/plugin-tape": "^14.0.0",
package/putout.json CHANGED
@@ -229,6 +229,7 @@
229
229
  "remove-unreachable-code",
230
230
  "remove-duplicate-keys",
231
231
  "reuse-duplicate-init",
232
+ "split-assignment-expressions",
232
233
  "split-variable-declarations",
233
234
  "split-nested-destructuring",
234
235
  "simplify-assignment",