putout 37.21.0 → 37.22.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 +34 -0
  2. package/package.json +3 -2
  3. package/putout.json +1 -0
package/ChangeLog CHANGED
@@ -1,3 +1,37 @@
1
+ 2025.01.29, v37.22.0
2
+
3
+ fix:
4
+ - 147dce894 @putout/test: eslint: UPDATE
5
+
6
+ feature:
7
+ - f3c660348 @putout/plugin-convert-break-to-return: add
8
+ - 5717ab6ff @putout/operator-keyword: break
9
+
10
+ 2025.01.28, v37.21.1
11
+
12
+ fix:
13
+ - b6b24d18c @putout/plugin-react: rename -> rename-file
14
+ - 240965767 @putout/plugin-remove-unreachable-code: report count
15
+
16
+ feature:
17
+ - 6a5934166 putout: @putout/plugin-remove-unused-variables v11.0.0
18
+ - a440651b6 babel-plugin-putout: mocha v11.1.0
19
+ - a40bcb195 eslint-plugin-putout: @stylistic/eslint-plugin-ts v3.0.0
20
+ - 5eef5ad00 eslint-plugin-putout: @stylistic/eslint-plugin-jsx v3.0.0
21
+ - 0e525ee18 @putout/eslint-config: @stylistic/eslint-plugin-js v3.0.0
22
+ - d77150cc6 @putout/plugin-react: drop support of 🐊 < 37
23
+ - dab92ff9e @putout/plugin-react: rename-jsx-to-js: add
24
+ - 8b2b5c432 @putout/plugin-putout: add-path-arg-to-fix: exclude empty body
25
+ - d9b8c9ab1 @putout/plugin-extract-keywords-from-variables: export
26
+ - 1d21caeb9 @putout/plugin-putout: declare: isModuleDeclarationKeyword
27
+ - 3c4e67958 @putout/operator-keyword: isModuleDeclarationKeyword: add
28
+ - 5f4d46c14 @putout/plugin-react: rename-js-to-jsx: add
29
+ - 4f7a7a8c3 @putout/operator-match-files: add support of filename
30
+ - 9e9c03c09 @putout/operator-filesystem: findFile: exclude: function
31
+ - d80ebedd2 @putout/plugin-remove-unreachable-code: report
32
+ - e109fd293 @putout/plugin-remove-nested-blocks: case when it is the only block (#225)
33
+ - 8698589be @putout/plugin-remove-unreachable-code: backtracking parents and enhancements (#226)
34
+
1
35
  2025.01.25, v37.21.0
2
36
 
3
37
  feature:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "putout",
3
- "version": "37.21.0",
3
+ "version": "37.22.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",
@@ -102,6 +102,7 @@
102
102
  "@putout/plugin-convert-assignment-to-arrow-function": "^1.0.0",
103
103
  "@putout/plugin-convert-assignment-to-comparison": "^2.0.0",
104
104
  "@putout/plugin-convert-assignment-to-declaration": "^2.0.0",
105
+ "@putout/plugin-convert-break-to-return": "^1.0.0",
105
106
  "@putout/plugin-convert-concat-to-flat": "^1.0.0",
106
107
  "@putout/plugin-convert-const-to-let": "^4.0.0",
107
108
  "@putout/plugin-convert-expression-to-params": "^1.0.0",
@@ -157,7 +158,7 @@
157
158
  "@putout/plugin-remove-unused-for-of-variables": "^3.0.0",
158
159
  "@putout/plugin-remove-unused-labels": "^1.0.1",
159
160
  "@putout/plugin-remove-unused-private-fields": "^2.0.0",
160
- "@putout/plugin-remove-unused-variables": "^10.1.0",
161
+ "@putout/plugin-remove-unused-variables": "^11.0.0",
161
162
  "@putout/plugin-remove-useless-arguments": "^10.0.0",
162
163
  "@putout/plugin-remove-useless-array": "^1.0.0",
163
164
  "@putout/plugin-remove-useless-array-constructor": "^2.0.0",
package/putout.json CHANGED
@@ -251,6 +251,7 @@
251
251
  "convert-expression-to-params",
252
252
  "convert-assignment-to-declaration",
253
253
  "convert-apply-to-spread",
254
+ "convert-break-to-return",
254
255
  "convert-concat-to-flat",
255
256
  "convert-arguments-to-rest",
256
257
  "convert-object-assign-to-merge-spread",