putout 26.24.0 → 26.25.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 +21 -0
  2. package/package.json +3 -3
  3. package/putout.json +1 -1
package/ChangeLog CHANGED
@@ -1,3 +1,24 @@
1
+ 2022.07.20, v26.25.0
2
+
3
+ fix:
4
+ - (eslint-plugin-putout) no-unresolved: missing ./ after transform
5
+ - (@putout/plugin-react-hooks) remove-this: exclude not MemberExpressions
6
+
7
+
8
+ feature:
9
+ - (package) eslint-plugin-putout v16.0.0
10
+ - (@putout/test) eslint-plugin-node -> eslint-plugin-n
11
+ - (putout) match: .eslintrc.json -> .eslintrc.*
12
+ - (@putout/cli-cache) add ability to handle case where meta is null (while rebasing)
13
+ - (eslint-plugin-putout) eslint-plugin-node -> eslint-plugin-n
14
+ - (@putout/plugin-eslint) add convert-node-to-n
15
+ - (@putout/plugin-react-hooks) convert-state-to-hook: exclude shorthand properties
16
+ - (@putout/plugin-react-hooks) convert-class-to-function: exclude classes with lifecycle
17
+ - (@putout/plugin-react-hooks) convert-state-to-hooks: exclude AssignmentExpression not related to MemberExpression
18
+ - (@putout/plugin-remove-nested-blocks) improve support of reduce
19
+ - (@putout/plugin-convert-reduce-to-for-of) improve support of reduce
20
+
21
+
1
22
  2022.07.12, v26.24.0
2
23
 
3
24
  feature:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "putout",
3
- "version": "26.24.0",
3
+ "version": "26.25.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",
@@ -222,8 +222,8 @@
222
222
  "currify": "^4.0.0",
223
223
  "escover": "^2.1.0",
224
224
  "eslint": "^8.0.1",
225
- "eslint-plugin-node": "^11.0.0",
226
- "eslint-plugin-putout": "^15.0.0",
225
+ "eslint-plugin-n": "^15.2.4",
226
+ "eslint-plugin-putout": "^16.0.0",
227
227
  "just-camel-case": "^4.0.2",
228
228
  "lerna": "^5.0.0",
229
229
  "madrun": "^9.0.0",
package/putout.json CHANGED
@@ -68,7 +68,7 @@
68
68
  "browserlist": {
69
69
  ".browserlistrc": "on"
70
70
  },
71
- ".eslintrc.json": {
71
+ ".eslintrc*": {
72
72
  "eslint": "on",
73
73
  "eslint/convert-require-to-import": "off"
74
74
  },