putout 40.7.0 → 40.8.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 +29 -0
- package/lib/putout.js +1 -0
- package/package.json +5 -3
- package/putout.json +1 -0
package/ChangeLog
CHANGED
|
@@ -1,3 +1,32 @@
|
|
|
1
|
+
2025.09.07, v40.8.0
|
|
2
|
+
|
|
3
|
+
fix:
|
|
4
|
+
- 41b1b9d96 @putout/eslint-plugin-putout: no-extra-parens false positive deprecation notice (eslint-stylistic/eslint-stylistice#965)
|
|
5
|
+
- 6176cc384 @putout/eslint-config: no-extra-parens false positive deprecation notice (eslint-stylistic/eslint-stylistice#965)
|
|
6
|
+
|
|
7
|
+
feature:
|
|
8
|
+
- 54150706b putout: @putout/plugin-putout v27.0.0
|
|
9
|
+
- 76433dc30 @putout/plugin-putout: declare: operator: hasTagName: add
|
|
10
|
+
- a149577b6 @putout/operator-regexp: add
|
|
11
|
+
- 78f050bdf @putout/engine-loader: estrace v6.0.0
|
|
12
|
+
- a8bd4d2ed @putout/plugin-putout: replace-test-message: no report with options -> no report
|
|
13
|
+
- 0dd6576ee @putout/plugin-putout: replace-test-message: transform with options -> transform
|
|
14
|
+
- 414251eff @putout/plugin-putout: apply-transform-with-options: no options
|
|
15
|
+
- 57e196f67 @putout/plugin-extract-sequence-expressions: inside IfStatement (#236)
|
|
16
|
+
- ad137217a @putout/plugin-putout: apply-report: reportWithOptions
|
|
17
|
+
- 03c944e2a @putout/plugin-putout: apply-transform-with-options: add
|
|
18
|
+
- a36488b1e @putout/plugin-putout: apply-report: not Identifier inside ObjectExpression
|
|
19
|
+
- 2756cd538 @putout/processor-css: no-descending-specificity: off (stylelint/stylelint#8567)
|
|
20
|
+
- cb39280cf @putout/plugin-promises: convert-reject-to-throw: async body
|
|
21
|
+
- d5832c3af @putout/operate: setLiteralValue: no raw, no value
|
|
22
|
+
|
|
23
|
+
2025.08.29, v40.7.1
|
|
24
|
+
|
|
25
|
+
feature:
|
|
26
|
+
- d4bccaa75 @putout/plugin-convert-object-keys-to-object-entries: add
|
|
27
|
+
- 8b62a1edc @putout/plugin-apply-consistent-blocks: leadingComments: exclude
|
|
28
|
+
- 19abfe5dd @putout/engine-runner: replacer: watermark: false positive
|
|
29
|
+
|
|
1
30
|
2025.08.28, v40.7.0
|
|
2
31
|
|
|
3
32
|
fix:
|
package/lib/putout.js
CHANGED
|
@@ -122,6 +122,7 @@ module.exports.operator = {
|
|
|
122
122
|
...require('@putout/compare'),
|
|
123
123
|
...require('@putout/traverse'),
|
|
124
124
|
...require('@putout/operator-json'),
|
|
125
|
+
...require('@putout/operator-jsx'),
|
|
125
126
|
...require('@putout/operator-declare'),
|
|
126
127
|
...require('@putout/operator-regexp'),
|
|
127
128
|
...require('@putout/operator-add-args'),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "putout",
|
|
3
|
-
"version": "40.
|
|
3
|
+
"version": "40.8.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",
|
|
@@ -82,6 +82,7 @@
|
|
|
82
82
|
"@putout/operator-filesystem": "^9.0.0",
|
|
83
83
|
"@putout/operator-ignore": "^3.0.0",
|
|
84
84
|
"@putout/operator-json": "^2.0.0",
|
|
85
|
+
"@putout/operator-jsx": "^1.0.0",
|
|
85
86
|
"@putout/operator-keyword": "^2.0.0",
|
|
86
87
|
"@putout/operator-match-files": "^9.0.0",
|
|
87
88
|
"@putout/operator-parens": "^2.0.0",
|
|
@@ -107,8 +108,9 @@
|
|
|
107
108
|
"@putout/plugin-convert-expression-to-params": "^1.0.0",
|
|
108
109
|
"@putout/plugin-convert-index-of-to-includes": "^2.0.0",
|
|
109
110
|
"@putout/plugin-convert-object-assign-to-merge-spread": "^6.0.0",
|
|
110
|
-
"@putout/plugin-convert-object-entries-to-object-keys": "^1.0.0",
|
|
111
111
|
"@putout/plugin-convert-object-entries-to-array-entries": "^3.0.0",
|
|
112
|
+
"@putout/plugin-convert-object-entries-to-object-keys": "^1.0.0",
|
|
113
|
+
"@putout/plugin-convert-object-keys-to-object-entries": "^1.0.0",
|
|
112
114
|
"@putout/plugin-convert-quotes-to-backticks": "^5.0.0",
|
|
113
115
|
"@putout/plugin-convert-template-to-string": "^3.0.0",
|
|
114
116
|
"@putout/plugin-convert-to-arrow-function": "^4.0.0",
|
|
@@ -140,7 +142,7 @@
|
|
|
140
142
|
"@putout/plugin-package-json": "^9.0.0",
|
|
141
143
|
"@putout/plugin-parens": "^4.0.0",
|
|
142
144
|
"@putout/plugin-promises": "^18.0.0",
|
|
143
|
-
"@putout/plugin-putout": "^
|
|
145
|
+
"@putout/plugin-putout": "^27.0.0",
|
|
144
146
|
"@putout/plugin-putout-config": "^10.0.0",
|
|
145
147
|
"@putout/plugin-regexp": "^12.0.0",
|
|
146
148
|
"@putout/plugin-remove-console": "^6.0.0",
|
package/putout.json
CHANGED
|
@@ -255,6 +255,7 @@
|
|
|
255
255
|
"convert-arguments-to-rest",
|
|
256
256
|
"convert-object-assign-to-merge-spread",
|
|
257
257
|
"convert-object-entries-to-object-keys",
|
|
258
|
+
"convert-object-keys-to-object-entries",
|
|
258
259
|
"convert-to-arrow-function",
|
|
259
260
|
"convert-array-copy-to-slice",
|
|
260
261
|
"convert-template-to-string",
|