putout 32.0.7 → 32.1.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 +10 -0
- package/package.json +2 -1
- package/putout.json +2 -0
package/ChangeLog
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
2023.09.27, v32.1.0
|
|
2
|
+
|
|
3
|
+
feature:
|
|
4
|
+
- 7c50a12e7 putout: bundle @putout/plugin-convert-optional-to-logical: assign
|
|
5
|
+
- f2eb83bec @putout/plugin: convert-optional-to-logical: assign
|
|
6
|
+
- 03b8e3201 @putout/plugin-convert-optional-to-logical: drop support of 🐊 < 32
|
|
7
|
+
- 9a5b4e40d @putout/engine-parser: optionalChainingAssign
|
|
8
|
+
- f11f520f7 @putout/engine-parser: deferredImportEvaluation
|
|
9
|
+
- eb74bf5a4 @putout/engine-parser: enable sourcePhaseImports
|
|
10
|
+
|
|
1
11
|
2023.09.26, v32.0.7
|
|
2
12
|
|
|
3
13
|
fix:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "putout",
|
|
3
|
-
"version": "32.0
|
|
3
|
+
"version": "32.1.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",
|
|
@@ -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,7 @@
|
|
|
131
131
|
"typescript": "off",
|
|
132
132
|
"convert-esm-to-commonjs": "off",
|
|
133
133
|
"convert-commonjs-to-esm": "off",
|
|
134
|
+
"convert-optional-to-logical/call": "off",
|
|
134
135
|
"nodejs/convert-top-level-return": "off",
|
|
135
136
|
"putout": "off",
|
|
136
137
|
"putout-config": "off",
|
|
@@ -200,6 +201,7 @@
|
|
|
200
201
|
"convert-concat-to-flat",
|
|
201
202
|
"convert-arguments-to-rest",
|
|
202
203
|
"convert-object-assign-to-merge-spread",
|
|
204
|
+
"convert-optional-to-logical",
|
|
203
205
|
"convert-to-arrow-function",
|
|
204
206
|
"convert-array-copy-to-slice",
|
|
205
207
|
"convert-template-to-string",
|