putout 31.2.0 β 31.2.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
CHANGED
|
@@ -1,3 +1,26 @@
|
|
|
1
|
+
2023.08.21, v31.2.2
|
|
2
|
+
|
|
3
|
+
feature:
|
|
4
|
+
- d6b8d6706 package: @putout/plugin-declare-before-reference v3.0.0
|
|
5
|
+
- 64ddc72fe @putout/plugin-declare-before-reference: drop support of π < 31
|
|
6
|
+
- 443182ca9 @putout/plugin-declare-before-reference: improve order
|
|
7
|
+
|
|
8
|
+
2023.08.17, v31.2.1
|
|
9
|
+
|
|
10
|
+
fix:
|
|
11
|
+
- 4e7221606 putout: validate-options: pass printer options (#180)
|
|
12
|
+
- 331446897 @putout/plugin-putout: apply-namespace-specifier: no specifier
|
|
13
|
+
- 47de2534a @putout/plugin-putout: apply-namaspace-specifier: report: exists
|
|
14
|
+
- f9a5a9eb8 @putout/plugin-putout: add-push: couple usages
|
|
15
|
+
|
|
16
|
+
feature:
|
|
17
|
+
- 3cc868239 @putout/plugin-github: install-rust: add
|
|
18
|
+
- 1bb5dd527 @putout/plugin-putout: apply-namaspace-specifier: add
|
|
19
|
+
- b734569f3 @putout/plugin-github: install-bun: check if exists
|
|
20
|
+
- 42772336a @putout/plugin-github: convert-npm-to-bun: add
|
|
21
|
+
- 8520afe54 @putout/plugin-github: install-bun
|
|
22
|
+
- 59614627a @putout/plugin: convert-object-entries-to-array-entries: get back old behavior
|
|
23
|
+
|
|
1
24
|
2023.08.14, v31.2.0
|
|
2
25
|
|
|
3
26
|
feature:
|
|
@@ -73,7 +73,18 @@
|
|
|
73
73
|
},
|
|
74
74
|
"printer": {
|
|
75
75
|
"description": "Tell πPutout which printer to use",
|
|
76
|
-
"
|
|
76
|
+
"oneOf": [{
|
|
77
|
+
"type": "string"
|
|
78
|
+
}, {
|
|
79
|
+
"type": "array",
|
|
80
|
+
"minItems": 2,
|
|
81
|
+
"maxItems": 2,
|
|
82
|
+
"items": [{
|
|
83
|
+
"type": "string"
|
|
84
|
+
}, {
|
|
85
|
+
"type": "object"
|
|
86
|
+
}]
|
|
87
|
+
}]
|
|
77
88
|
},
|
|
78
89
|
"formatter": {
|
|
79
90
|
"description": "Choose the way to show information about errors found",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "putout",
|
|
3
|
-
"version": "31.2.
|
|
3
|
+
"version": "31.2.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",
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
"@putout/plugin-convert-template-to-string": "^1.0.0",
|
|
96
96
|
"@putout/plugin-convert-to-arrow-function": "^4.0.0",
|
|
97
97
|
"@putout/plugin-declare": "^2.0.0",
|
|
98
|
-
"@putout/plugin-declare-before-reference": "^
|
|
98
|
+
"@putout/plugin-declare-before-reference": "^3.0.0",
|
|
99
99
|
"@putout/plugin-declare-imports-first": "^2.0.0",
|
|
100
100
|
"@putout/plugin-eslint": "^5.0.0",
|
|
101
101
|
"@putout/plugin-extract-object-properties": "^9.0.0",
|