putout 21.0.0 → 21.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.
Files changed (3) hide show
  1. package/ChangeLog +43 -0
  2. package/package.json +4 -4
  3. package/putout.json +1 -2
package/ChangeLog CHANGED
@@ -1,3 +1,46 @@
1
+ 2021.11.06, v21.2.0
2
+
3
+ fix:
4
+ - (@putout/plugin-remove-useless-return) exclude nodes with comments
5
+
6
+ feature:
7
+ - (package) @putout/plugin-putout-config v2.0.0
8
+ - (@putout/plugin-putout-config) drop support of node < 14
9
+ - (@putout/plugin-apply-is-array) add support of "inline" option (https://github.com/xtermjs/xterm.js/pull/3538#discussion_r743663993)
10
+ - (@putout/plugin-putout-config) improve support of plugin options
11
+ - (@putout/operator-declare) improve VariableDeclaration check
12
+ - (@putout/plugin-declare-undefined-variables) maybe: add maybeFn
13
+ - (eslint-plugin-putout) safe: disable remove-useless-return
14
+ - (eslint-plugin-tape) add tape-add-newline-between-tests
15
+
16
+
17
+ 2021.11.02, v21.1.2
18
+
19
+ feature:
20
+ - (@putout/plugin-apply-is-array) drop support of putout < 21
21
+ - (@putout/plugin-apply-is-array) Array.isArray -> isArray
22
+ - (@putout/plugin-declare-undefined-variables) add support of isUndefined
23
+ - (@putout/plugin-convert-typeof-to-is-type) add support of isUndefined
24
+
25
+
26
+ 2021.11.02, v21.1.1
27
+
28
+ fix:
29
+ - (putout) strict-mode/add: on, strict-mode/remove: on -> strict-mode: on
30
+
31
+ feature:
32
+ - (@putout/engine-loader) add support of namespaced plugins
33
+
34
+
35
+ 2021.11.01, v21.1.0
36
+
37
+ feature:
38
+ - (package) @putout/plugin-merge-duplicate-imports v4.0.0
39
+ - (@putout/plugin-merge-duplicate-imports) drop support of putout < 21
40
+ - (@putout/plugin-merge-duplicate-imports) add support of ImportSpecifier importKind (https://babeljs.io/blog/2021/10/29/7.16.0#typescript-45-features-13802httpsgithubcombabelbabelpull13802-13838httpsgithubcombabelbabelpull13838)
41
+ - (@putout/plugin-apply-filter-boolean) add support of find
42
+
43
+
1
44
  2021.10.31, v21.0.0
2
45
 
3
46
  fix:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "putout",
3
- "version": "21.0.0",
3
+ "version": "21.2.0",
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",
@@ -73,7 +73,7 @@
73
73
  "@putout/plugin-apply-destructuring": "^5.0.0",
74
74
  "@putout/plugin-apply-filter-boolean": "^1.0.0",
75
75
  "@putout/plugin-apply-if-condition": "^1.0.0",
76
- "@putout/plugin-apply-is-array": "^1.0.0",
76
+ "@putout/plugin-apply-is-array": "^2.0.0",
77
77
  "@putout/plugin-apply-numeric-separators": "^1.0.0",
78
78
  "@putout/plugin-apply-optional-chaining": "^2.0.0",
79
79
  "@putout/plugin-apply-utility-types": "^1.0.0",
@@ -110,14 +110,14 @@
110
110
  "@putout/plugin-gitignore": "^3.0.0",
111
111
  "@putout/plugin-madrun": "^10.0.0",
112
112
  "@putout/plugin-merge-destructuring-properties": "^5.0.0",
113
- "@putout/plugin-merge-duplicate-imports": "^3.0.0",
113
+ "@putout/plugin-merge-duplicate-imports": "^4.0.0",
114
114
  "@putout/plugin-merge-if-statements": "^3.0.0",
115
115
  "@putout/plugin-nodejs": "^1.0.0",
116
116
  "@putout/plugin-npmignore": "^2.0.0",
117
117
  "@putout/plugin-package-json": "^1.0.0",
118
118
  "@putout/plugin-promises": "^6.0.0",
119
119
  "@putout/plugin-putout": "^8.0.0",
120
- "@putout/plugin-putout-config": "^1.0.0",
120
+ "@putout/plugin-putout-config": "^2.0.0",
121
121
  "@putout/plugin-regexp": "^3.0.0",
122
122
  "@putout/plugin-remove-boolean-from-assertions": "^1.0.0",
123
123
  "@putout/plugin-remove-boolean-from-logical-expressions": "^4.0.0",
package/putout.json CHANGED
@@ -17,8 +17,7 @@
17
17
  "strict-mode/add": "off"
18
18
  },
19
19
  "*.{jsx,js,cjs}": {
20
- "strict-mode/add": "on",
21
- "strict-mode/remove": "on"
20
+ "strict-mode": "on"
22
21
  },
23
22
  "{.,}putout.json": {
24
23
  "putout-config": "on"