putout 37.8.2 → 37.10.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 +31 -0
  2. package/package.json +3 -2
  3. package/putout.json +2 -0
package/ChangeLog CHANGED
@@ -1,3 +1,34 @@
1
+ 2025.01.04, v37.10.0
2
+
3
+ feature:
4
+ - 4eb7a3f17 @putout/plugin-apply-arrow: add
5
+ - aa76ecb28 @putout/plugin-tape: remove-only: exclude not Identifier
6
+ - ee4b52b27 putout: @putout/plugin-package-json v9.0.0
7
+ - d3b2cae5f @putout/plugin-package-json: drop support of 🐊 < 37
8
+ - aae27cc74 @putout/plugin-package-json: remove-exports-with-missing-files: node
9
+ - 594f88fb3 @putout/plugin-conditions: reverse-condition: and: add
10
+ - 91b35fe43 @putout/operate: delete duplicate comments
11
+
12
+ 2025.01.04, v37.9.0
13
+
14
+ feature:
15
+ - e48a95145 @putout/plugin-tape: remove-only: exclude not Identifier
16
+ - 03f7a3701 putout: @putout/plugin-package-json v9.0.0
17
+ - 3c7c632d2 @putout/plugin-package-json: drop support of 🐊 < 37
18
+ - d00da6ede @putout/plugin-package-json: remove-exports-with-missing-files: node
19
+ - 45a2f5a79 @putout/plugin-conditions: reverse-condition: and: add
20
+ - 70db84bf2 @putout/operate: delete duplicate comments
21
+ - 29f9f2206 @putout/plugin-math: remove-unchanged-zero-declaration: exclude assertions
22
+ - 374ae6466 @putout/plugin-math: remove-unchanged-zero-declaration: exclude not referenced
23
+ - f9dc5980d @putout/eslint: eslint: when output is empty string return it, instead of source
24
+ - 222d5c20c @putout/test: eslint: UPDATE: generate fixture when absent
25
+ - 60c7e3661 @putout/plugin-conditions: wrap-with-block: add
26
+ - 5744fc4b7 @putout/plugin-conditions: apply-consistent-blocks: exclude statement-inside-if
27
+ - 58436d2f5 @putout/plugin-putout: add-path-arg-to-visitors: add
28
+ - 4bc086ff4 @putout/plugin-for-of: to-for-n: add
29
+ - a7421908b @putout/plugin-esm: sort-imports-by-specifiers: hash
30
+ - 0f37689c8 @putout/plugin-math: remove-unchanged-zero-declarations: BinaryExpressions: only
31
+
1
32
  2024.12.29, v37.8.2
2
33
 
3
34
  feature:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "putout",
3
- "version": "37.8.2",
3
+ "version": "37.10.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",
@@ -83,6 +83,7 @@
83
83
  "@putout/operator-match-files": "^5.0.0",
84
84
  "@putout/operator-regexp": "^1.0.0",
85
85
  "@putout/operator-rename-files": "^2.0.0",
86
+ "@putout/plugin-apply-arrow": "^1.0.0",
86
87
  "@putout/plugin-apply-at": "^2.0.0",
87
88
  "@putout/plugin-apply-destructuring": "^7.0.0",
88
89
  "@putout/plugin-apply-dot-notation": "^2.0.0",
@@ -133,7 +134,7 @@
133
134
  "@putout/plugin-nodejs": "^13.0.0",
134
135
  "@putout/plugin-npmignore": "^5.0.0",
135
136
  "@putout/plugin-optional-chaining": "^1.0.1",
136
- "@putout/plugin-package-json": "^8.0.0",
137
+ "@putout/plugin-package-json": "^9.0.0",
137
138
  "@putout/plugin-parens": "^1.0.0",
138
139
  "@putout/plugin-promises": "^16.0.0",
139
140
  "@putout/plugin-putout": "^22.0.0",
package/putout.json CHANGED
@@ -47,6 +47,7 @@
47
47
  "putout-config/remove-empty-file": "on"
48
48
  },
49
49
  "*.md": {
50
+ "apply-arrow": "off",
50
51
  "convert-assignment-to-declaration": "off",
51
52
  "conditions/apply-consistent-blocks": "off",
52
53
  "conditions/convert-comparison-to-boolean": "off",
@@ -191,6 +192,7 @@
191
192
  "plugins": [
192
193
  "parens",
193
194
  "apply-at",
195
+ "apply-arrow",
194
196
  "apply-dot-notation",
195
197
  "apply-early-return",
196
198
  "apply-flat-map",