putout 32.0.7 → 32.2.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 +19 -0
- package/package.json +3 -2
- package/putout.json +3 -0
package/ChangeLog
CHANGED
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
2023.09.27, v32.2.0
|
|
2
|
+
|
|
3
|
+
feature:
|
|
4
|
+
- f70a45c2c package: @putout/plugin-apply-optional-chaining v5.0.0
|
|
5
|
+
- 14aa701aa @putout/plugin-apply-optional-chaining: use, assign
|
|
6
|
+
- 5f60e306b @putout/plugin-apply-optional-chaining: drop support of 🐊 < 32
|
|
7
|
+
- 609c785de putout: bundle @putout/plugin-convert-optional-to-logical: assign
|
|
8
|
+
- aa2ec40c4 @putout/plugin: convert-optional-to-logical: assign
|
|
9
|
+
|
|
10
|
+
2023.09.27, v32.1.0
|
|
11
|
+
|
|
12
|
+
feature:
|
|
13
|
+
- 7c50a12e7 putout: bundle @putout/plugin-convert-optional-to-logical: assign
|
|
14
|
+
- f2eb83bec @putout/plugin: convert-optional-to-logical: assign
|
|
15
|
+
- 03b8e3201 @putout/plugin-convert-optional-to-logical: drop support of 🐊 < 32
|
|
16
|
+
- 9a5b4e40d @putout/engine-parser: optionalChainingAssign
|
|
17
|
+
- f11f520f7 @putout/engine-parser: deferredImportEvaluation
|
|
18
|
+
- eb74bf5a4 @putout/engine-parser: enable sourcePhaseImports
|
|
19
|
+
|
|
1
20
|
2023.09.26, v32.0.7
|
|
2
21
|
|
|
3
22
|
fix:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "putout",
|
|
3
|
-
"version": "32.0
|
|
3
|
+
"version": "32.2.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",
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"@putout/plugin-apply-destructuring": "^7.0.0",
|
|
74
74
|
"@putout/plugin-apply-early-return": "^3.0.0",
|
|
75
75
|
"@putout/plugin-apply-flat-map": "^2.0.0",
|
|
76
|
-
"@putout/plugin-apply-optional-chaining": "^
|
|
76
|
+
"@putout/plugin-apply-optional-chaining": "^5.0.0",
|
|
77
77
|
"@putout/plugin-apply-starts-with": "^1.0.0",
|
|
78
78
|
"@putout/plugin-apply-template-literals": "^2.0.0",
|
|
79
79
|
"@putout/plugin-browserlist": "^1.0.0",
|
|
@@ -91,6 +91,7 @@
|
|
|
91
91
|
"@putout/plugin-convert-mock-require-to-mock-import": "^4.0.0",
|
|
92
92
|
"@putout/plugin-convert-object-assign-to-merge-spread": "^6.0.0",
|
|
93
93
|
"@putout/plugin-convert-object-entries-to-array-entries": "^3.0.0",
|
|
94
|
+
"@putout/plugin-convert-optional-to-logical": "^3.0.0",
|
|
94
95
|
"@putout/plugin-convert-quotes-to-backticks": "^2.0.0",
|
|
95
96
|
"@putout/plugin-convert-template-to-string": "^1.0.0",
|
|
96
97
|
"@putout/plugin-convert-to-arrow-function": "^4.0.0",
|
package/putout.json
CHANGED
|
@@ -131,6 +131,8 @@
|
|
|
131
131
|
"typescript": "off",
|
|
132
132
|
"convert-esm-to-commonjs": "off",
|
|
133
133
|
"convert-commonjs-to-esm": "off",
|
|
134
|
+
"apply-optional-chaining/assign": "off",
|
|
135
|
+
"convert-optional-to-logical/call": "off",
|
|
134
136
|
"nodejs/convert-top-level-return": "off",
|
|
135
137
|
"putout": "off",
|
|
136
138
|
"putout-config": "off",
|
|
@@ -200,6 +202,7 @@
|
|
|
200
202
|
"convert-concat-to-flat",
|
|
201
203
|
"convert-arguments-to-rest",
|
|
202
204
|
"convert-object-assign-to-merge-spread",
|
|
205
|
+
"convert-optional-to-logical",
|
|
203
206
|
"convert-to-arrow-function",
|
|
204
207
|
"convert-array-copy-to-slice",
|
|
205
208
|
"convert-template-to-string",
|