putout 37.15.1 → 37.16.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,19 @@
1
+ 2025.01.17, v37.16.0
2
+
3
+ feature:
4
+ - 1afaf7302 @putout/plugin-extract-keywords-from-variables: add
5
+
6
+ 2025.01.17, v37.15.2
7
+
8
+ feature:
9
+ - 9a6f245e8 putout: @putout/plugin-convert-const-to-let v4.0.0
10
+ - 2c22b5b8e @putout/plugin-convert-const-to-let: drop support of 🐊 < 37
11
+ - cad7b02aa @putout/plugin-convert-const-to-let: exclude: export
12
+ - d629da0cc @putout/plugin-package-json: remove-duplicate-keywords: second
13
+ - d10696282 @putout/plugin-package-json: remove-duplicate-keywords: add
14
+ - a64d46d50 @putout/plugin-apply-fixture-name-to-message: tape: remove-only
15
+ - c8b795082 @putout/plugin-putout: apply-fixture-name-to-message
16
+
1
17
  2025.01.15, v37.15.1
2
18
 
3
19
  feature:
@@ -101,7 +101,8 @@ function _readOptions(name) {
101
101
  dirname(packagePath), {
102
102
  ...options,
103
103
  ...require(packagePath).putout,
104
- }];
104
+ },
105
+ ];
105
106
 
106
107
  return ['', {}];
107
108
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "putout",
3
- "version": "37.15.1",
3
+ "version": "37.16.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",
@@ -102,7 +102,7 @@
102
102
  "@putout/plugin-convert-assignment-to-comparison": "^2.0.0",
103
103
  "@putout/plugin-convert-assignment-to-declaration": "^1.0.0",
104
104
  "@putout/plugin-convert-concat-to-flat": "^1.0.0",
105
- "@putout/plugin-convert-const-to-let": "^3.0.0",
105
+ "@putout/plugin-convert-const-to-let": "^4.0.0",
106
106
  "@putout/plugin-convert-expression-to-params": "^1.0.0",
107
107
  "@putout/plugin-convert-index-of-to-includes": "^2.0.0",
108
108
  "@putout/plugin-convert-object-assign-to-merge-spread": "^6.0.0",
@@ -115,6 +115,7 @@
115
115
  "@putout/plugin-declare-before-reference": "^5.0.0",
116
116
  "@putout/plugin-eslint": "^9.0.0",
117
117
  "@putout/plugin-esm": "^1.0.0",
118
+ "@putout/plugin-extract-keywords-from-variables": "^1.0.0",
118
119
  "@putout/plugin-extract-object-properties": "^9.0.0",
119
120
  "@putout/plugin-extract-sequence-expressions": "^3.0.0",
120
121
  "@putout/plugin-filesystem": "^7.0.0",
package/putout.json CHANGED
@@ -201,6 +201,7 @@
201
201
  "apply-starts-with",
202
202
  "apply-template-literals",
203
203
  "apply-overrides",
204
+ "extract-keywords-from-variables",
204
205
  "extract-object-properties",
205
206
  "extract-sequence-expressions",
206
207
  "madrun",