putout 40.7.1 → 40.8.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 +53 -0
- package/lib/putout.js +1 -0
- package/package.json +5 -4
package/ChangeLog
CHANGED
|
@@ -1,3 +1,56 @@
|
|
|
1
|
+
2025.09.14, v40.8.1
|
|
2
|
+
|
|
3
|
+
fix:
|
|
4
|
+
- 994ace879 @putout/plugin-putout: convert-push-object-to-push-path: destructuring -> path
|
|
5
|
+
- f5259d092 @putout/plugin-nodejs: convert-esm-to-commonjs: epxorts -> exports
|
|
6
|
+
|
|
7
|
+
feature:
|
|
8
|
+
- cb02cf3bc putout: @putout/plugin-declare v6.0.0
|
|
9
|
+
- 5b36b75f5 @putout/plugin-declare: migrate to ESM
|
|
10
|
+
- d26dc8a80 @putout/plugin-declare: jessy: add
|
|
11
|
+
- c04be2e03 @putout/plugin-vitest: convert-jest-to-vitest: add
|
|
12
|
+
- b67a6d251 @putout/plugin-vitest: drop support of 🐊 < 40
|
|
13
|
+
- 2173a52c1 @putout/plugin-vitest: apply-hoisted: add
|
|
14
|
+
- f5c2553ca @putout/plugin-putout: convert-push-object-to-push-path: exclude fix when push multiple
|
|
15
|
+
- f1fc66e57 @putout/plugin-putout: convert-push-object-to-push-path: add
|
|
16
|
+
- 1d66597e7 @putout/plugin-conditions: reverse-condition: !(__a <= __b) -> __a > __b
|
|
17
|
+
- a718f94b7 @putout/plugin-putout: declare: operator: jsx: className: add
|
|
18
|
+
- 1cf78871c @putout/operator-jsx: className
|
|
19
|
+
- ecc1e584f @putout/plugin-putout: declare: operator: jsx
|
|
20
|
+
- 127e7a2e4 @putout/operator-jsx: setAttributeValue
|
|
21
|
+
- 2acf74fa5 @putout/plugin-putout: declare: operator: jsx: removeAttributeValue
|
|
22
|
+
- 8219b51f6 @putout/operator-jsx: removeAttributeValue: add
|
|
23
|
+
- fb80d03fa @putout/plugin-putout: declare: jsx: addAttributeValue
|
|
24
|
+
- 3845163b6 @putout/operator-jsx: addAttributeValue: add
|
|
25
|
+
- 3baf00ed9 @putout/plugin-putout: declare: jsx: getAttributeValue: add
|
|
26
|
+
- bde5b9728 @putout/operator-jsx: getAttributeValue: add
|
|
27
|
+
- 4b89ae419 @putout/plugin-putout: declare: jsx: getAttributeNode: add
|
|
28
|
+
- 90d2eb8a4 @putout/operator-jsx: getAttributeNode: add
|
|
29
|
+
- b8025f519 @putout/plugin-putout: declare: jsx: getAttributePath: add
|
|
30
|
+
- e0aced6e0 @putout/operator-jsx: getAttributePath: add
|
|
31
|
+
|
|
32
|
+
2025.09.07, v40.8.0
|
|
33
|
+
|
|
34
|
+
fix:
|
|
35
|
+
- 41b1b9d96 @putout/eslint-plugin-putout: no-extra-parens false positive deprecation notice (eslint-stylistic/eslint-stylistice#965)
|
|
36
|
+
- 6176cc384 @putout/eslint-config: no-extra-parens false positive deprecation notice (eslint-stylistic/eslint-stylistice#965)
|
|
37
|
+
|
|
38
|
+
feature:
|
|
39
|
+
- 54150706b putout: @putout/plugin-putout v27.0.0
|
|
40
|
+
- 76433dc30 @putout/plugin-putout: declare: operator: hasTagName: add
|
|
41
|
+
- a149577b6 @putout/operator-regexp: add
|
|
42
|
+
- 78f050bdf @putout/engine-loader: estrace v6.0.0
|
|
43
|
+
- a8bd4d2ed @putout/plugin-putout: replace-test-message: no report with options -> no report
|
|
44
|
+
- 0dd6576ee @putout/plugin-putout: replace-test-message: transform with options -> transform
|
|
45
|
+
- 414251eff @putout/plugin-putout: apply-transform-with-options: no options
|
|
46
|
+
- 57e196f67 @putout/plugin-extract-sequence-expressions: inside IfStatement (#236)
|
|
47
|
+
- ad137217a @putout/plugin-putout: apply-report: reportWithOptions
|
|
48
|
+
- 03c944e2a @putout/plugin-putout: apply-transform-with-options: add
|
|
49
|
+
- a36488b1e @putout/plugin-putout: apply-report: not Identifier inside ObjectExpression
|
|
50
|
+
- 2756cd538 @putout/processor-css: no-descending-specificity: off (stylelint/stylelint#8567)
|
|
51
|
+
- cb39280cf @putout/plugin-promises: convert-reject-to-throw: async body
|
|
52
|
+
- d5832c3af @putout/operate: setLiteralValue: no raw, no value
|
|
53
|
+
|
|
1
54
|
2025.08.29, v40.7.1
|
|
2
55
|
|
|
3
56
|
feature:
|
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.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",
|
|
@@ -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,14 +108,14 @@
|
|
|
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",
|
|
111
|
+
"@putout/plugin-convert-object-entries-to-array-entries": "^3.0.0",
|
|
110
112
|
"@putout/plugin-convert-object-entries-to-object-keys": "^1.0.0",
|
|
111
113
|
"@putout/plugin-convert-object-keys-to-object-entries": "^1.0.0",
|
|
112
|
-
"@putout/plugin-convert-object-entries-to-array-entries": "^3.0.0",
|
|
113
114
|
"@putout/plugin-convert-quotes-to-backticks": "^5.0.0",
|
|
114
115
|
"@putout/plugin-convert-template-to-string": "^3.0.0",
|
|
115
116
|
"@putout/plugin-convert-to-arrow-function": "^4.0.0",
|
|
116
117
|
"@putout/plugin-coverage": "^1.0.0",
|
|
117
|
-
"@putout/plugin-declare": "^
|
|
118
|
+
"@putout/plugin-declare": "^6.0.0",
|
|
118
119
|
"@putout/plugin-declare-before-reference": "^8.0.0",
|
|
119
120
|
"@putout/plugin-eslint": "^14.0.0",
|
|
120
121
|
"@putout/plugin-esm": "^5.0.0",
|
|
@@ -141,7 +142,7 @@
|
|
|
141
142
|
"@putout/plugin-package-json": "^9.0.0",
|
|
142
143
|
"@putout/plugin-parens": "^4.0.0",
|
|
143
144
|
"@putout/plugin-promises": "^18.0.0",
|
|
144
|
-
"@putout/plugin-putout": "^
|
|
145
|
+
"@putout/plugin-putout": "^27.0.0",
|
|
145
146
|
"@putout/plugin-putout-config": "^10.0.0",
|
|
146
147
|
"@putout/plugin-regexp": "^12.0.0",
|
|
147
148
|
"@putout/plugin-remove-console": "^6.0.0",
|