putout 26.10.0 → 26.13.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 CHANGED
@@ -1,3 +1,33 @@
1
+ 2022.06.04, v26.13.0
2
+
3
+ feature:
4
+ - (putout) improve support of tsx in markdown
5
+
6
+
7
+ 2022.06.04, v26.12.0
8
+
9
+ feature:
10
+ - (putout) improve support of processing typescript in markdown
11
+ - (@putout/plugin-typescript) add remove-useless-parens
12
+ - (@putout/plugin-typescript) convert-generic-to-shorthand: report
13
+ - (@putout/plugin-typescript) convert-generic-to-shorthand: improve support of UnionType
14
+ - (eslint-plugin-putout) markdown{ts}: enable @typescript-eslint/array-type
15
+ - (@putout/plugin-simplify-logical-expressions) add cases of duplication operand
16
+ - (@putout/plugin-simplify-logical-expression) report message
17
+
18
+
19
+ 2022.06.02, v26.11.0
20
+
21
+ fix:
22
+ - (putout) resolve name before parsing options
23
+
24
+
25
+ feature:
26
+ - (package) @putout/plugin-simplify-ternary v3.0.0
27
+ - (@putout/plugin-simplify-ternary) drop support of 🐊 < 26
28
+ - (@putout/plugin-simplify-ternary) add support of spread
29
+
30
+
1
31
  2022.06.01, v26.10.0
2
32
 
3
33
  fix:
@@ -37,7 +37,7 @@ module.exports = async ({readFile, report, writeFile, exit, raw, write, log, cur
37
37
  .replace(/^\./, cwd);
38
38
 
39
39
  const [configError, options] = tryCatch(getOptions, {
40
- name,
40
+ name: resolvedName,
41
41
  rulesdir,
42
42
  noConfig,
43
43
  transform,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "putout",
3
- "version": "26.10.0",
3
+ "version": "26.13.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",
@@ -165,7 +165,7 @@
165
165
  "@putout/plugin-reuse-duplicate-init": "^4.0.0",
166
166
  "@putout/plugin-simplify-assignment": "^1.0.0",
167
167
  "@putout/plugin-simplify-logical-expressions": "^2.0.0",
168
- "@putout/plugin-simplify-ternary": "^2.0.0",
168
+ "@putout/plugin-simplify-ternary": "^3.0.0",
169
169
  "@putout/plugin-split-nested-destructuring": "^1.0.0",
170
170
  "@putout/plugin-split-variable-declarations": "^2.0.0",
171
171
  "@putout/plugin-strict-mode": "^5.0.0",
package/putout.json CHANGED
@@ -85,7 +85,7 @@
85
85
  "*.cjs": {
86
86
  "convert-esm-to-commonjs": "on"
87
87
  },
88
- "*.{ts,tsx,mts,cts}": {
88
+ "*.{ts,tsx,mts,cts,md{ts},md{tsx}}": {
89
89
  "typescript": "on"
90
90
  },
91
91
  "*.d.ts": {