putout 31.2.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,19 @@
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
+
1
17
  2023.08.14, v31.2.0
2
18
 
3
19
  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.2.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",