putout 35.19.0 → 35.20.1

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,25 @@
1
+ 2024.05.06, v35.20.1
2
+
3
+ fix:
4
+ - 44635b9f3 putout: config: eslint/apply-match-to-flat: disable for .eslintrc.js
5
+
6
+ feature:
7
+ - 4d75b9c9f putout: @putout/plugin-for-of v5.0.0
8
+ - b1b9aa23b @putout/plugin-for-of: drop support of 🐊 < 35
9
+ - dd29a5a0b @putout/plugin-for-of: for-each: exclude ConditionalExpression (coderaiser/minify#122)
10
+
11
+ 2024.05.05, v35.20.0
12
+
13
+ feature:
14
+ - 5581321ec putout: @putout/plugin-for-of v5.0.0
15
+ - 45b0a13ce @putout/plugin-for-of: drop support of 🐊 < 35
16
+ - 5057d632f @putout/plugin-for-of: for-each: exclude ConditionalExpression
17
+ - 0d40f13b2 @putout/plugin-putout: add-store: add
18
+ - 9d8e3c3cc @putout/plugin-apply-overrides: rm unused code
19
+ - 6b8afd4c2 @putout/plugin-eslint-plugin: drop support of 🐊 < 35
20
+ - 3a2ec5b50 @putout/eslint-plugin: update-ecma-version: add
21
+ - 86c829a97 @putout/engine-loader: rules: overlap
22
+
1
23
  2024.05.03, v35.19.0
2
24
 
3
25
  fix:
@@ -30,7 +30,10 @@ module.exports = (info = {}, overrides = {}) => {
30
30
  readCodeMods = _readCodeMods,
31
31
  } = info;
32
32
 
33
- const {cwd = process.cwd(), readdirSync = _readdirSync} = overrides;
33
+ const {
34
+ cwd = process.cwd(),
35
+ readdirSync = _readdirSync,
36
+ } = overrides;
34
37
 
35
38
  const [dir, customOptions] = readOptions(name);
36
39
  const homeOptions = readHomeOptions();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "putout",
3
- "version": "35.19.0",
3
+ "version": "35.20.1",
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",
@@ -118,7 +118,7 @@
118
118
  "@putout/plugin-extract-object-properties": "^9.0.0",
119
119
  "@putout/plugin-extract-sequence-expressions": "^3.0.0",
120
120
  "@putout/plugin-filesystem": "^5.0.0",
121
- "@putout/plugin-for-of": "^4.0.0",
121
+ "@putout/plugin-for-of": "^5.0.0",
122
122
  "@putout/plugin-github": "^12.0.0",
123
123
  "@putout/plugin-gitignore": "^6.0.0",
124
124
  "@putout/plugin-logical-expressions": "^5.0.0",
package/putout.json CHANGED
@@ -102,7 +102,8 @@
102
102
  },
103
103
  ".eslintrc{*,.json}": {
104
104
  "eslint": "on",
105
- "eslint/convert-require-to-import": "off"
105
+ "eslint/convert-require-to-import": "off",
106
+ "eslint/apply-match-to-flat": "off"
106
107
  },
107
108
  "eslint.config.*": {
108
109
  "eslint": "on"