putout 32.0.6 → 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.
Files changed (3) hide show
  1. package/ChangeLog +29 -0
  2. package/package.json +3 -2
  3. package/putout.json +2 -0
package/ChangeLog CHANGED
@@ -1,3 +1,32 @@
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
+
11
+ 2023.09.26, v32.0.7
12
+
13
+ fix:
14
+ - ce4cb9011 @putout/plugin-conditions: report: convert-equal-to-strict-equal
15
+ - 3405fe5fc @putout/processor-markdown: cache
16
+
17
+ feature:
18
+ - 071d77f61 package: @putout/plugin-strict-mode v9.0.0
19
+ - 9250e82ff @putout/plugin-strict-mode: drop support of 🐊 < 32
20
+ - 832ad34dd @putout/plugin-strict-mode: add-missing: report
21
+ - cac1fde26 @putout/engine-parser: babel: decoratorAutoAccessors
22
+ - db48ec61f @putout/processor-html: drop support of 🐊 < 32
23
+ - c50eb7d95 @putout/processor-typescript: drop support of 🐊 < 32
24
+ - 4706a33d0 @putout/processor-wasm: drop support of 🐊 < 32
25
+ - e8dc8a70c package: ts-morph v19.0.0
26
+ - 77ef88fe7 package: svelte v4.2.0
27
+ - e8e5f732a package: remark-stringify v11.0.0
28
+ - f1c2ea5d4 package: remark-parse v11.0.0
29
+
1
30
  2023.09.18, v32.0.6
2
31
 
3
32
  feature:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "putout",
3
- "version": "32.0.6",
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",
@@ -154,7 +155,7 @@
154
155
  "@putout/plugin-simplify-ternary": "^6.0.0",
155
156
  "@putout/plugin-split-nested-destructuring": "^3.0.0",
156
157
  "@putout/plugin-split-variable-declarations": "^3.0.0",
157
- "@putout/plugin-strict-mode": "^8.0.0",
158
+ "@putout/plugin-strict-mode": "^9.0.0",
158
159
  "@putout/plugin-tape": "^11.0.0",
159
160
  "@putout/plugin-try-catch": "^3.0.0",
160
161
  "@putout/plugin-types": "^3.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",