putout 35.18.0 → 35.20.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,24 @@
1
+ 2024.05.05, v35.20.0
2
+
3
+ feature:
4
+ - 5581321ec putout: @putout/plugin-for-of v5.0.0
5
+ - 45b0a13ce @putout/plugin-for-of: drop support of 🐊 < 35
6
+ - 5057d632f @putout/plugin-for-of: for-each: exclude ConditionalExpression
7
+ - 0d40f13b2 @putout/plugin-putout: add-store: add
8
+ - 9d8e3c3cc @putout/plugin-apply-overrides: rm unused code
9
+ - 6b8afd4c2 @putout/plugin-eslint-plugin: drop support of 🐊 < 35
10
+ - 3a2ec5b50 @putout/eslint-plugin: update-ecma-version: add
11
+ - 86c829a97 @putout/engine-loader: rules: overlap
12
+
13
+ 2024.05.03, v35.19.0
14
+
15
+ fix:
16
+ - b47fc0082 eslint-plugin-putout: long-properties-destructuring: ImportDeclaration: no imported
17
+
18
+ feature:
19
+ - 06c23903c putout: @putout/plugin-apply-overrides v1.0.0
20
+ - 78a37907a eslint-plugin-putout: long-properties-destructuring: add support of ImportDeclaration (align with @putout/printer maxPropertiesLengthInOneLine)
21
+
1
22
  2024.04.29, v35.18.0
2
23
 
3
24
  feature:
@@ -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.18.0",
3
+ "version": "35.20.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, Babel and support of js, jsx, typescript, flow, markdown, yaml and json",
@@ -90,6 +90,7 @@
90
90
  "@putout/plugin-apply-early-return": "^3.0.0",
91
91
  "@putout/plugin-apply-flat-map": "^2.0.0",
92
92
  "@putout/plugin-apply-optional-chaining": "^5.0.0",
93
+ "@putout/plugin-apply-overrides": "^1.0.0",
93
94
  "@putout/plugin-apply-starts-with": "^1.0.0",
94
95
  "@putout/plugin-apply-template-literals": "^3.0.0",
95
96
  "@putout/plugin-browserlist": "^2.0.0",
@@ -117,7 +118,7 @@
117
118
  "@putout/plugin-extract-object-properties": "^9.0.0",
118
119
  "@putout/plugin-extract-sequence-expressions": "^3.0.0",
119
120
  "@putout/plugin-filesystem": "^5.0.0",
120
- "@putout/plugin-for-of": "^4.0.0",
121
+ "@putout/plugin-for-of": "^5.0.0",
121
122
  "@putout/plugin-github": "^12.0.0",
122
123
  "@putout/plugin-gitignore": "^6.0.0",
123
124
  "@putout/plugin-logical-expressions": "^5.0.0",
package/putout.json CHANGED
@@ -190,6 +190,7 @@
190
190
  "apply-optional-chaining",
191
191
  "apply-starts-with",
192
192
  "apply-template-literals",
193
+ "apply-overrides",
193
194
  "extract-object-properties",
194
195
  "extract-sequence-expressions",
195
196
  "madrun",