putout 29.0.0 → 29.0.2
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 +14 -0
- package/package.json +4 -4
- package/putout.json +5 -5
package/ChangeLog
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
2023.03.07, v29.0.2
|
|
2
|
+
|
|
3
|
+
feature:
|
|
4
|
+
- e4e4435b3 @putout/plugin-maybe: renamed from @putout/plugin-apply-maybe
|
|
5
|
+
- be39dd68a eslint-plugin-putout: array-element-newline: exclude arrays with string and number
|
|
6
|
+
|
|
7
|
+
2023.03.06, v29.0.1
|
|
8
|
+
|
|
9
|
+
feature:
|
|
10
|
+
- eslint-plugin-putout: single-property-destructuring: exclude AssignmentPattern used as value of ObjectPatterns Property
|
|
11
|
+
- package: @putout/plugin-putout v12.0.0
|
|
12
|
+
- @putout/plugin-putout: drop support of 🐊 < 29
|
|
13
|
+
- @putout/plugin-declare: renamed from @putout/plugin-declare-undefined-variables
|
|
14
|
+
|
|
1
15
|
2023.03.06, v29.0.0
|
|
2
16
|
|
|
3
17
|
feature:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "putout",
|
|
3
|
-
"version": "29.0.
|
|
3
|
+
"version": "29.0.2",
|
|
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",
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"@putout/plugin-apply-flat-map": "^2.0.0",
|
|
79
79
|
"@putout/plugin-apply-if-condition": "^1.0.0",
|
|
80
80
|
"@putout/plugin-apply-is-array": "^3.0.0",
|
|
81
|
-
"@putout/plugin-
|
|
81
|
+
"@putout/plugin-maybe": "^1.0.0",
|
|
82
82
|
"@putout/plugin-apply-optional-chaining": "^2.0.0",
|
|
83
83
|
"@putout/plugin-apply-template-literals": "^1.0.0",
|
|
84
84
|
"@putout/plugin-browserlist": "^1.0.0",
|
|
@@ -105,9 +105,9 @@
|
|
|
105
105
|
"@putout/plugin-convert-template-to-string": "^1.0.0",
|
|
106
106
|
"@putout/plugin-convert-to-arrow-function": "^3.0.0",
|
|
107
107
|
"@putout/plugin-convert-typeof-to-is-type": "^2.0.0",
|
|
108
|
+
"@putout/plugin-declare": "^1.0.1",
|
|
108
109
|
"@putout/plugin-declare-before-reference": "^1.0.0",
|
|
109
110
|
"@putout/plugin-declare-imports-first": "^2.0.0",
|
|
110
|
-
"@putout/plugin-declare-undefined-variables": "^8.0.0",
|
|
111
111
|
"@putout/plugin-eslint": "^4.2.0",
|
|
112
112
|
"@putout/plugin-extract-object-properties": "^8.0.0",
|
|
113
113
|
"@putout/plugin-extract-sequence-expressions": "^3.0.0",
|
|
@@ -125,7 +125,7 @@
|
|
|
125
125
|
"@putout/plugin-npmignore": "^2.0.0",
|
|
126
126
|
"@putout/plugin-package-json": "^4.0.0",
|
|
127
127
|
"@putout/plugin-promises": "^9.0.0",
|
|
128
|
-
"@putout/plugin-putout": "^
|
|
128
|
+
"@putout/plugin-putout": "^12.0.0",
|
|
129
129
|
"@putout/plugin-putout-config": "^2.0.0",
|
|
130
130
|
"@putout/plugin-regexp": "^6.0.0",
|
|
131
131
|
"@putout/plugin-remove-boolean-from-assertions": "^1.0.0",
|
package/putout.json
CHANGED
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"remove-empty/import": "off"
|
|
30
30
|
},
|
|
31
31
|
"*.md": {
|
|
32
|
-
"
|
|
32
|
+
"maybe": "off",
|
|
33
33
|
"convert-quotes-to-backticks": "off",
|
|
34
34
|
"convert-comparison-to-boolean": "off",
|
|
35
35
|
"remove-unused-expressions": "off",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"remove-constant-conditions": "off",
|
|
43
43
|
"remove-console": "off",
|
|
44
44
|
"remove-unreachable-code": "off",
|
|
45
|
-
"declare
|
|
45
|
+
"declare": "off",
|
|
46
46
|
"nodejs/declare": "off",
|
|
47
47
|
"typescript/remove-unused-types": "off"
|
|
48
48
|
},
|
|
@@ -97,7 +97,7 @@
|
|
|
97
97
|
"typescript": "on"
|
|
98
98
|
},
|
|
99
99
|
"*.d.ts": {
|
|
100
|
-
"declare
|
|
100
|
+
"declare": "off"
|
|
101
101
|
}
|
|
102
102
|
},
|
|
103
103
|
"ignore": [
|
|
@@ -147,10 +147,10 @@
|
|
|
147
147
|
"apply-if-condition",
|
|
148
148
|
"apply-comparison-order",
|
|
149
149
|
"apply-template-literals",
|
|
150
|
-
"apply-maybe",
|
|
151
150
|
"extract-object-properties",
|
|
152
151
|
"extract-sequence-expressions",
|
|
153
152
|
"madrun",
|
|
153
|
+
"maybe",
|
|
154
154
|
"webpack",
|
|
155
155
|
"eslint",
|
|
156
156
|
"package-json",
|
|
@@ -223,7 +223,7 @@
|
|
|
223
223
|
"merge-if-statements",
|
|
224
224
|
"declare-imports-first",
|
|
225
225
|
"declare-before-reference",
|
|
226
|
-
"declare
|
|
226
|
+
"declare",
|
|
227
227
|
"strict-mode",
|
|
228
228
|
"math",
|
|
229
229
|
"putout",
|