putout 29.1.10 → 29.1.12
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 +23 -0
- package/package.json +3 -2
- package/putout.json +1 -0
package/ChangeLog
CHANGED
|
@@ -1,3 +1,26 @@
|
|
|
1
|
+
2023.04.01, v29.1.12
|
|
2
|
+
|
|
3
|
+
fix:
|
|
4
|
+
- 5dfaf00cc @putout/test: write source fixture
|
|
5
|
+
|
|
6
|
+
feature:
|
|
7
|
+
- 332aac4ae putout: @putout/plugin-extract-object-properties v9.0.0
|
|
8
|
+
- c25364a05 2putout/plugin-extract-object-properties: report
|
|
9
|
+
- 993f8d41e @putout/plugin-extract-object-property: drop support of 🐊 < 29
|
|
10
|
+
- b60725045 @putout/plugin-extract-object-properties: not-equal-deep: replace with Identifier -> ObjectProperty
|
|
11
|
+
- caa806cde @putout/test: add ability to update source fixtures
|
|
12
|
+
- 217d34d10 @putout/operator-add-args: improve support of FunctionDeclaration pattern
|
|
13
|
+
- d7492eda8 @putout/plugin-remove-empty: argument: add support of ObjectMethod
|
|
14
|
+
|
|
15
|
+
2023.03.30, v29.1.11
|
|
16
|
+
|
|
17
|
+
feature:
|
|
18
|
+
- a1f3ef403 @putout/plugin-convert-object-entries-to-array-entries: exclude index with different name
|
|
19
|
+
- 3cb0b1a42 @putout/plugin-convert-object-entries-to-array-entries: exclude '=='
|
|
20
|
+
- 1ece7961b @putout/plugin-convert-object-entries-to-array-entries: add
|
|
21
|
+
- 17d9a6968 @putout/plugin-math: declare: add
|
|
22
|
+
- d2e27da98 eslint-plugin-putout: json: eol-last: off -> never
|
|
23
|
+
|
|
1
24
|
2023.03.29, v29.1.10
|
|
2
25
|
|
|
3
26
|
fix:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "putout",
|
|
3
|
-
"version": "29.1.
|
|
3
|
+
"version": "29.1.12",
|
|
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-convert-index-of-to-includes": "^2.0.0",
|
|
91
91
|
"@putout/plugin-convert-mock-require-to-mock-import": "^4.0.0",
|
|
92
92
|
"@putout/plugin-convert-object-assign-to-merge-spread": "^6.0.0",
|
|
93
|
+
"@putout/plugin-convert-object-entries-to-array-entries": "^1.0.0",
|
|
93
94
|
"@putout/plugin-convert-quotes-to-backticks": "^2.0.0",
|
|
94
95
|
"@putout/plugin-convert-template-to-string": "^1.0.0",
|
|
95
96
|
"@putout/plugin-convert-to-arrow-function": "^3.0.0",
|
|
@@ -97,7 +98,7 @@
|
|
|
97
98
|
"@putout/plugin-declare-before-reference": "^2.0.0",
|
|
98
99
|
"@putout/plugin-declare-imports-first": "^2.0.0",
|
|
99
100
|
"@putout/plugin-eslint": "^5.0.0",
|
|
100
|
-
"@putout/plugin-extract-object-properties": "^
|
|
101
|
+
"@putout/plugin-extract-object-properties": "^9.0.0",
|
|
101
102
|
"@putout/plugin-extract-sequence-expressions": "^3.0.0",
|
|
102
103
|
"@putout/plugin-for-of": "^1.0.0",
|
|
103
104
|
"@putout/plugin-github": "^4.0.0",
|
package/putout.json
CHANGED
|
@@ -199,6 +199,7 @@
|
|
|
199
199
|
"convert-assignment-to-arrow-function",
|
|
200
200
|
"convert-assignment-to-comparison",
|
|
201
201
|
"convert-quotes-to-backticks",
|
|
202
|
+
"convert-object-entries-to-array-entries",
|
|
202
203
|
"merge-destructuring-properties",
|
|
203
204
|
"merge-duplicate-imports",
|
|
204
205
|
"merge-duplicate-functions",
|