putout 25.11.2 → 25.12.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 +25 -0
- package/package.json +4 -4
package/ChangeLog
CHANGED
|
@@ -1,3 +1,28 @@
|
|
|
1
|
+
2022.03.31, v25.12.0
|
|
2
|
+
|
|
3
|
+
feature:
|
|
4
|
+
- (package) @putout/plugin-convert-comparison-to-boolean v3.0.0
|
|
5
|
+
- (@putout/plugin-convert-comparison-to-boolean) drop support of putout < 25
|
|
6
|
+
- (@putout/plugin-simplify-logical-expressions) add more cases
|
|
7
|
+
- (@putout/plugin-convert-comparison-to-boolean) template.ast -> BooleanLiteral
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
2022.03.30, v25.11.4
|
|
11
|
+
|
|
12
|
+
feature:
|
|
13
|
+
- (package) @putout/plugin-remove-useless-variables v7.0.0
|
|
14
|
+
- (@putout/plugin-remove-useless-variables) drop support of putout < 25
|
|
15
|
+
- (@putout/plugin-remove-useless-variables) remove: exclude bindings with constant violations (#100)
|
|
16
|
+
- (@putout/operate) remove: preserve only top-level comments, remove other (#100)
|
|
17
|
+
- (@putout/operate) compute: exclude SpreadElement from extracting (#100)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
2022.03.30, v25.11.3
|
|
21
|
+
|
|
22
|
+
feature:
|
|
23
|
+
- (package) @putout/formatter-progress v4.0.0
|
|
24
|
+
|
|
25
|
+
|
|
1
26
|
2022.03.30, v25.11.2
|
|
2
27
|
|
|
3
28
|
fix:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "putout",
|
|
3
|
-
"version": "25.
|
|
3
|
+
"version": "25.12.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 and babel plugins support of js, jsx typescript, flow files, markdown, yaml and json",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"@putout/formatter-json": "^2.0.0",
|
|
64
64
|
"@putout/formatter-json-lines": "^3.0.0",
|
|
65
65
|
"@putout/formatter-memory": "^3.0.0",
|
|
66
|
-
"@putout/formatter-progress": "^
|
|
66
|
+
"@putout/formatter-progress": "^4.0.0",
|
|
67
67
|
"@putout/formatter-progress-bar": "^3.0.0",
|
|
68
68
|
"@putout/formatter-stream": "^4.0.0",
|
|
69
69
|
"@putout/operate": "^8.0.0",
|
|
@@ -85,7 +85,7 @@
|
|
|
85
85
|
"@putout/plugin-convert-assignment-to-comparison": "^1.0.0",
|
|
86
86
|
"@putout/plugin-convert-bitwise-to-logical": "^1.0.0",
|
|
87
87
|
"@putout/plugin-convert-commonjs-to-esm": "^9.0.0",
|
|
88
|
-
"@putout/plugin-convert-comparison-to-boolean": "^
|
|
88
|
+
"@putout/plugin-convert-comparison-to-boolean": "^3.0.0",
|
|
89
89
|
"@putout/plugin-convert-concat-to-flat": "^1.0.0",
|
|
90
90
|
"@putout/plugin-convert-equal-to-strict-equal": "^1.0.0",
|
|
91
91
|
"@putout/plugin-convert-esm-to-commonjs": "^4.0.0",
|
|
@@ -155,7 +155,7 @@
|
|
|
155
155
|
"@putout/plugin-remove-useless-template-expressions": "^1.0.0",
|
|
156
156
|
"@putout/plugin-remove-useless-type-conversion": "^2.0.0",
|
|
157
157
|
"@putout/plugin-remove-useless-typeof": "^1.0.0",
|
|
158
|
-
"@putout/plugin-remove-useless-variables": "^
|
|
158
|
+
"@putout/plugin-remove-useless-variables": "^7.0.0",
|
|
159
159
|
"@putout/plugin-reuse-duplicate-init": "^3.0.0",
|
|
160
160
|
"@putout/plugin-simplify-assignment": "^1.0.0",
|
|
161
161
|
"@putout/plugin-simplify-logical-expressions": "^2.0.0",
|