putout 41.0.9 → 41.0.11

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 +33 -0
  2. package/package.json +3 -4
  3. package/putout.json +1 -1
package/ChangeLog CHANGED
@@ -1,3 +1,36 @@
1
+ 2025.12.27, v41.0.11
2
+
3
+ fix:
4
+ - 20bd39f5e @putout/cli-staged: rm unused once
5
+
6
+ feature:
7
+ - cdcc97e93 eslint-plugin-putout: @putout/eslint v5.0.0
8
+ - 07d8299d8 putout: @putout/cli-process-file v5.0.0
9
+ - 000ee519c @putout/test: @putout/eslint v5.0.0
10
+ - b32a4c2ad @putout/cli-process-file: @putout/eslint v5.0.0
11
+ - 558d2db2a @putout/cli-process-file: drop support of 🐊 < 41
12
+ - 97c712254 @putout/eslint: migrate to ESM
13
+ - 628e3761d @putout/eslint: drop support of node < 20
14
+ - 80b0031e1 @putout/eslint: default export -> eslint
15
+ - 30c14a876 @putout/plugin-declare-before-reference: simplify
16
+
17
+ 2025.12.27, v41.0.10
18
+
19
+ feature:
20
+ - c55a476c3 putout: @putout/plugin-declare-before-reference v9.0.0
21
+ - 149a38dac @putout/plugin-variables: remove-unused: ArrayPattern: filter before check
22
+ - 7d776bfce @putout/plugin-declare-before-reference: drop support of 🐊 < 41
23
+ - 14369f390 @putout/plugin-declare-before-reference: variables/apply-declarations-order
24
+ - 4e99f41d2 @putout/plugin-variables: apply-destructuring-order: exclude not ObjectPattern
25
+ - 9d892ab70 putout: config: markdown: variables/apply-declarations-order: disable
26
+ - 9a0cd6899 @putout/plugin-variables: apply-declarations-order: both identifiers
27
+ - b44904377 @putout/plugin-putout-config: apply-variables: reuse-duplicate-init
28
+ - 511db8f32 @putout/plugin-variables: reuse-duplicate-init: add
29
+ - 5af46b3a3 @putout/variables: apply-declarations-order: add
30
+ - a05cea44e @putout/plugin-destructuring: apply-declarations-order: add
31
+ - fbb452f01 @putout/plugin-putout: declare-template-variables: no arguments
32
+ - b8e027497 @putout/plugin-putout: declare-template-variables: ArrowFunction body: expression
33
+
1
34
  2025.12.26, v41.0.9
2
35
 
3
36
  feature:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "putout",
3
- "version": "41.0.9",
3
+ "version": "41.0.11",
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",
@@ -56,7 +56,7 @@
56
56
  "@putout/cli-choose-formatter": "^5.0.0",
57
57
  "@putout/cli-keypress": "^3.0.0",
58
58
  "@putout/cli-match": "^2.0.0",
59
- "@putout/cli-process-file": "^4.0.0",
59
+ "@putout/cli-process-file": "^5.0.0",
60
60
  "@putout/cli-ruler": "^4.0.0",
61
61
  "@putout/cli-staged": "^2.0.0",
62
62
  "@putout/cli-validate-args": "^2.0.0",
@@ -111,7 +111,7 @@
111
111
  "@putout/plugin-convert-to-arrow-function": "^4.0.0",
112
112
  "@putout/plugin-coverage": "^1.0.0",
113
113
  "@putout/plugin-declare": "^6.0.0",
114
- "@putout/plugin-declare-before-reference": "^8.0.0",
114
+ "@putout/plugin-declare-before-reference": "^9.0.0",
115
115
  "@putout/plugin-destructuring": "^1.0.0",
116
116
  "@putout/plugin-eslint": "^15.0.0",
117
117
  "@putout/plugin-esm": "^6.0.0",
@@ -163,7 +163,6 @@
163
163
  "@putout/plugin-remove-useless-replace": "^2.0.0",
164
164
  "@putout/plugin-remove-useless-template-expressions": "^3.0.0",
165
165
  "@putout/plugin-return": "^2.0.0",
166
- "@putout/plugin-reuse-duplicate-init": "^8.0.0",
167
166
  "@putout/plugin-simplify-ternary": "^8.0.0",
168
167
  "@putout/plugin-spread": "^1.0.0",
169
168
  "@putout/plugin-tape": "^19.0.0",
package/putout.json CHANGED
@@ -61,6 +61,7 @@
61
61
  "labels/remove-unused": "off",
62
62
  "remove-useless-escape": "off",
63
63
  "variables/remove-useless": "off",
64
+ "variables/apply-declarations-order": "off",
64
65
  "destructuring/remove-useless-variables": "off",
65
66
  "remove-useless-push": "off",
66
67
  "esm/remove-useless-export-specifiers": "off",
@@ -240,7 +241,6 @@
240
241
  "remove-unreachable-code",
241
242
  "remove-duplicate-keys",
242
243
  "return",
243
- "reuse-duplicate-init",
244
244
  "spread",
245
245
  "simplify-ternary",
246
246
  "convert-expression-to-params",