putout 31.1.0 → 31.2.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 CHANGED
@@ -1,3 +1,35 @@
1
+ 2023.08.17, v31.2.1
2
+
3
+ fix:
4
+ - 4e7221606 putout: validate-options: pass printer options (#180)
5
+ - 331446897 @putout/plugin-putout: apply-namespace-specifier: no specifier
6
+ - 47de2534a @putout/plugin-putout: apply-namaspace-specifier: report: exists
7
+ - f9a5a9eb8 @putout/plugin-putout: add-push: couple usages
8
+
9
+ feature:
10
+ - 3cc868239 @putout/plugin-github: install-rust: add
11
+ - 1bb5dd527 @putout/plugin-putout: apply-namaspace-specifier: add
12
+ - b734569f3 @putout/plugin-github: install-bun: check if exists
13
+ - 42772336a @putout/plugin-github: convert-npm-to-bun: add
14
+ - 8520afe54 @putout/plugin-github: install-bun
15
+ - 59614627a @putout/plugin: convert-object-entries-to-array-entries: get back old behavior
16
+
17
+ 2023.08.14, v31.2.0
18
+
19
+ feature:
20
+ - a19eac4b1 @putout/plugin-declare: get back Object.entries()
21
+ - 609e959ff package: @putout/plugin-convert-object-entries-to-array-entries v3.0.0
22
+ - 99609d78b @putout/plugin-convert-object-entries-to-array-entries: drop support of 🐊 < 31
23
+ - 523c9d105 @putout/plugin-entries: exclude part of declaration
24
+ - 0cd04a1c1 package: @putout/plugin-declare v2.0.0
25
+ - 26130877e package: @putout/plugin-apply-entries v1.0.0
26
+ - da810e278 @putout/plugin-declare: drop support of 🐊 < 31
27
+ - 11f68e09d @putout/plugin-declare: entries: auto check passed type
28
+ - 940f0660d @putout/plugin-apply-entries: add
29
+ - a6cd9361d eslint-plugin-putout: array-element-newline: null
30
+ - ae84b1d59 @putout/engine-parser: printer: recast: options
31
+ - 88c3a2f76 @putout/plugin-github: install-bun: add
32
+
1
33
  2023.08.13, v31.1.0
2
34
 
3
35
  feature:
@@ -72,8 +72,19 @@
72
72
  "type": "string"
73
73
  },
74
74
  "printer": {
75
- "description": "Tell 🐊Putout which printer to use",
76
- "type": "string"
75
+ "oneOf": [{
76
+ "description": "Tell 🐊Putout which printer to use",
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.1.0",
3
+ "version": "31.2.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",
@@ -90,11 +90,11 @@
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": "^2.0.0",
93
+ "@putout/plugin-convert-object-entries-to-array-entries": "^3.0.0",
94
94
  "@putout/plugin-convert-quotes-to-backticks": "^2.0.0",
95
95
  "@putout/plugin-convert-template-to-string": "^1.0.0",
96
96
  "@putout/plugin-convert-to-arrow-function": "^4.0.0",
97
- "@putout/plugin-declare": "^1.0.1",
97
+ "@putout/plugin-declare": "^2.0.0",
98
98
  "@putout/plugin-declare-before-reference": "^2.0.0",
99
99
  "@putout/plugin-declare-imports-first": "^2.0.0",
100
100
  "@putout/plugin-eslint": "^5.0.0",