putout 37.18.0 → 37.20.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.
- package/ChangeLog +31 -0
- package/lib/putout.js +1 -0
- package/package.json +5 -4
package/ChangeLog
CHANGED
|
@@ -1,3 +1,34 @@
|
|
|
1
|
+
2025.01.23, v37.20.0
|
|
2
|
+
|
|
3
|
+
feature:
|
|
4
|
+
- 0f3d340b2 putout: @putout/plugin-split-variable-declarations v4.0.0
|
|
5
|
+
- 321cd4666 putout: @putout/plugin-convert-assignment-to-declaration v2.0.0
|
|
6
|
+
- 63c4f40ad @putout/plugin-convert-assignment-to-declaration: drop support of 🐊 < 37
|
|
7
|
+
- 47a5ba076 @putout/plugin-convert-assignment-to-declaration: exclude keywords
|
|
8
|
+
- fc20fe6e7 @putout/plugin-split-variables-declarations: drop support of 🐊 < 37
|
|
9
|
+
- 9a8146c8f @putout/plugin-split-variable-declarations: exclude keywords
|
|
10
|
+
|
|
11
|
+
2025.01.23, v37.19.0
|
|
12
|
+
|
|
13
|
+
fix:
|
|
14
|
+
- d9359471b @putout/plugin-extract-keywords-from-variables: isDeclarationKeyword
|
|
15
|
+
|
|
16
|
+
feature:
|
|
17
|
+
- 94e35fbba @putout/plugin-putout: declare: operator-keyword
|
|
18
|
+
- 1be222802 @putout/operator-keyword: isDeclarationKeyword, isConditionKeyword
|
|
19
|
+
- f37981315 putout: @putout/plugin-remove-unused-variables v10.1.0
|
|
20
|
+
- f27b24496 @putout/plugin-remove-unused-variables: drop support of 🐊 < 37
|
|
21
|
+
- 40ad7ae99 putout: add operator-keyword
|
|
22
|
+
- 6cf22f70d @putout/plugin-remove-unused-variables: exclude keywords
|
|
23
|
+
- 8e3dce03e @putout/operator-keyword: add
|
|
24
|
+
- 03024f0ea @putout/plugin-extract-keywords-from-variables: isKeyword
|
|
25
|
+
- e6d85801d @putout/plugin: declare: isKeyword
|
|
26
|
+
- da325b7f1 @putout/engine-loader: load: PUTOUT_LOAD_DIR
|
|
27
|
+
- dfdf418eb @putout/plugin-conditions: reverse-conditions: !(__a !== __b || __c !== __d) -> __a === __b && __c === __d
|
|
28
|
+
- b178889e1 @putout/plugin-putout: declare-path-variable: add
|
|
29
|
+
- 4989b9f90 @putout/plugin-putout: declare-template-variables: declared partially
|
|
30
|
+
- ee80b0024 @putout/engine-parser: acorn: ParenthesizedExpression + TS
|
|
31
|
+
|
|
1
32
|
2025.01.21, v37.18.0
|
|
2
33
|
|
|
3
34
|
feature:
|
package/lib/putout.js
CHANGED
|
@@ -137,6 +137,7 @@ module.exports.operator = {
|
|
|
137
137
|
...require('@putout/operator-regexp'),
|
|
138
138
|
...require('@putout/operator-add-args'),
|
|
139
139
|
...require('@putout/operator-filesystem'),
|
|
140
|
+
...require('@putout/operator-keyword'),
|
|
140
141
|
...require('@putout/operator-match-files'),
|
|
141
142
|
...require('@putout/operator-rename-files'),
|
|
142
143
|
...require('@putout/operator-ignore'),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "putout",
|
|
3
|
-
"version": "37.
|
|
3
|
+
"version": "37.20.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",
|
|
@@ -80,6 +80,7 @@
|
|
|
80
80
|
"@putout/operator-filesystem": "^5.0.0",
|
|
81
81
|
"@putout/operator-ignore": "^1.0.0",
|
|
82
82
|
"@putout/operator-json": "^2.0.0",
|
|
83
|
+
"@putout/operator-keyword": "^1.0.0",
|
|
83
84
|
"@putout/operator-match-files": "^5.0.0",
|
|
84
85
|
"@putout/operator-regexp": "^1.0.0",
|
|
85
86
|
"@putout/operator-rename-files": "^2.0.0",
|
|
@@ -100,7 +101,7 @@
|
|
|
100
101
|
"@putout/plugin-convert-array-copy-to-slice": "^3.0.0",
|
|
101
102
|
"@putout/plugin-convert-assignment-to-arrow-function": "^1.0.0",
|
|
102
103
|
"@putout/plugin-convert-assignment-to-comparison": "^2.0.0",
|
|
103
|
-
"@putout/plugin-convert-assignment-to-declaration": "^
|
|
104
|
+
"@putout/plugin-convert-assignment-to-declaration": "^2.0.0",
|
|
104
105
|
"@putout/plugin-convert-concat-to-flat": "^1.0.0",
|
|
105
106
|
"@putout/plugin-convert-const-to-let": "^4.0.0",
|
|
106
107
|
"@putout/plugin-convert-expression-to-params": "^1.0.0",
|
|
@@ -156,7 +157,7 @@
|
|
|
156
157
|
"@putout/plugin-remove-unused-for-of-variables": "^3.0.0",
|
|
157
158
|
"@putout/plugin-remove-unused-labels": "^1.0.1",
|
|
158
159
|
"@putout/plugin-remove-unused-private-fields": "^2.0.0",
|
|
159
|
-
"@putout/plugin-remove-unused-variables": "^10.
|
|
160
|
+
"@putout/plugin-remove-unused-variables": "^10.1.0",
|
|
160
161
|
"@putout/plugin-remove-useless-arguments": "^10.0.0",
|
|
161
162
|
"@putout/plugin-remove-useless-array": "^1.0.0",
|
|
162
163
|
"@putout/plugin-remove-useless-array-constructor": "^2.0.0",
|
|
@@ -181,7 +182,7 @@
|
|
|
181
182
|
"@putout/plugin-simplify-ternary": "^7.0.0",
|
|
182
183
|
"@putout/plugin-split-assignment-expressions": "^1.0.0",
|
|
183
184
|
"@putout/plugin-split-nested-destructuring": "^3.0.0",
|
|
184
|
-
"@putout/plugin-split-variable-declarations": "^
|
|
185
|
+
"@putout/plugin-split-variable-declarations": "^4.0.0",
|
|
185
186
|
"@putout/plugin-tape": "^16.0.0",
|
|
186
187
|
"@putout/plugin-try-catch": "^4.0.0",
|
|
187
188
|
"@putout/plugin-types": "^6.0.0",
|