putout 41.0.9 → 41.0.10
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 +17 -0
- package/package.json +2 -3
- package/putout.json +1 -1
package/ChangeLog
CHANGED
|
@@ -1,3 +1,20 @@
|
|
|
1
|
+
2025.12.27, v41.0.10
|
|
2
|
+
|
|
3
|
+
feature:
|
|
4
|
+
- c55a476c3 putout: @putout/plugin-declare-before-reference v9.0.0
|
|
5
|
+
- 149a38dac @putout/plugin-variables: remove-unused: ArrayPattern: filter before check
|
|
6
|
+
- 7d776bfce @putout/plugin-declare-before-reference: drop support of 🐊 < 41
|
|
7
|
+
- 14369f390 @putout/plugin-declare-before-reference: variables/apply-declarations-order
|
|
8
|
+
- 4e99f41d2 @putout/plugin-variables: apply-destructuring-order: exclude not ObjectPattern
|
|
9
|
+
- 9d892ab70 putout: config: markdown: variables/apply-declarations-order: disable
|
|
10
|
+
- 9a0cd6899 @putout/plugin-variables: apply-declarations-order: both identifiers
|
|
11
|
+
- b44904377 @putout/plugin-putout-config: apply-variables: reuse-duplicate-init
|
|
12
|
+
- 511db8f32 @putout/plugin-variables: reuse-duplicate-init: add
|
|
13
|
+
- 5af46b3a3 @putout/variables: apply-declarations-order: add
|
|
14
|
+
- a05cea44e @putout/plugin-destructuring: apply-declarations-order: add
|
|
15
|
+
- fbb452f01 @putout/plugin-putout: declare-template-variables: no arguments
|
|
16
|
+
- b8e027497 @putout/plugin-putout: declare-template-variables: ArrowFunction body: expression
|
|
17
|
+
|
|
1
18
|
2025.12.26, v41.0.9
|
|
2
19
|
|
|
3
20
|
feature:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "putout",
|
|
3
|
-
"version": "41.0.
|
|
3
|
+
"version": "41.0.10",
|
|
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",
|
|
@@ -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": "^
|
|
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",
|