putout 22.0.1 → 22.0.2

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 +22 -2
  2. package/help.json +0 -1
  3. package/package.json +2 -2
package/ChangeLog CHANGED
@@ -1,9 +1,29 @@
1
+ 2021.11.19, v22.0.2
2
+
3
+ fix:
4
+ - (@putout/plugin-convert-generic-to-shorthand) exclude when no type parameters
5
+
6
+ feature:
7
+ - (package) @putout/plugin-convert-generic-to-shorthand v2.0.0
8
+ - (@putout/plugin-convert-generic-to-shorthand) drop support of node < 14
9
+ - (eslint-plugin-putout) add array-element-newline
10
+ - (eslint-plugin-putout) add remove-empty-newline-before-first-specifier
11
+ - (@putout/engine-parser) export babel/plugins
12
+ - (@putout/engine-parser) export acorn, espree, esprima
13
+ - (@putout/engine-parser) export babel parser
14
+ - (@putout/plugin-tape) convert-ok-to-match: exclude: keys
15
+ - (@putout/plugin-tape) convert-ok-to-match: rm RegExp, t.match adds it
16
+ - (eslint-plugin-putout) single-property-destructuring: exclude ImportSpecifier whith local different then imported
17
+ - (@putout/compare) add support of empty template
18
+ - (eslint-plugin-putout) remove-empty-newline-after-last-specifier: add support of ObjectExpression
19
+
20
+
1
21
  2021.11.14, v22.0.1
2
22
 
3
23
  fix:
4
24
  - (putout) parse-options: read rules: directory with config -> current working directory
5
- - test(@putout/engine-processor) markdown disable change without fix in favour of simpler rules
6
- - feature(@putout/processor-markdown) add support of rules splited to fix and traverse
25
+ - (@putout/engine-processor) markdown disable change without fix in favour of simpler rules
26
+ - (@putout/processor-markdown) add support of rules splited to fix and traverse
7
27
 
8
28
  feature:
9
29
  - (@putout/rules-set-homepage) update homepage so it linked to package directory (#88)
package/help.json CHANGED
@@ -18,5 +18,4 @@
18
18
  "--no-config ": "avoid reading '.putout.json'",
19
19
  "--no-ci ": "disable the CI detection",
20
20
  "--no-cache ": "disable the cache"
21
-
22
21
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "putout",
3
- "version": "22.0.1",
3
+ "version": "22.0.2",
4
4
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
5
5
  "description": "🐊 Pluggable and configurable code transformer with built-in eslint, babel plugins and jscodeshift codemods support of js, jsx typescript, flow files, markdown, yaml and json",
6
6
  "homepage": "http://github.com/coderaiser/putout",
@@ -91,7 +91,7 @@
91
91
  "@putout/plugin-convert-for-each-to-for-of": "^6.0.0",
92
92
  "@putout/plugin-convert-for-in-to-for-of": "^2.0.0",
93
93
  "@putout/plugin-convert-for-to-for-of": "^2.0.0",
94
- "@putout/plugin-convert-generic-to-shorthand": "^1.0.0",
94
+ "@putout/plugin-convert-generic-to-shorthand": "^2.0.0",
95
95
  "@putout/plugin-convert-index-of-to-includes": "^1.0.0",
96
96
  "@putout/plugin-convert-map-to-for-of": "^1.0.0",
97
97
  "@putout/plugin-convert-math-pow": "^4.0.0",