putout 35.35.0 → 35.35.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 CHANGED
@@ -1,3 +1,12 @@
1
+ 2024.06.17, v35.35.1
2
+
3
+ feature:
4
+ - d18ab8900 @putout/plugin-convert-assignment-to-declaration: binding
5
+ - 0b22cf083 @putout/plugin-convert-assignment-to-declaration: add
6
+ - 26518dcfb @putout/plugin-minify: merge-assignment-expressions: add
7
+ - 2cd355f72 @putout/plugin-split-assignment-expressions: duplicate-reuse
8
+ - 385a6ce21 @putout/plugin-split-assignment-expressions: exclude Function
9
+
1
10
  2024.06.13, v35.35.0
2
11
 
3
12
  feature:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "putout",
3
- "version": "35.35.0",
3
+ "version": "35.35.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",
@@ -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",
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",
@@ -236,6 +237,7 @@
236
237
  "simplify-ternary",
237
238
  "sort-imports-by-specifiers",
238
239
  "convert-const-to-let",
240
+ "convert-assignment-to-declaration",
239
241
  "convert-apply-to-spread",
240
242
  "convert-concat-to-flat",
241
243
  "convert-arguments-to-rest",