perf(pulumi): allow disabling upwards discovery (#4159)

* perf(pulumi): disable upwards discovery by default

* change `search_upwards` default to `true`
This commit is contained in:
David Knaack
2022-07-10 11:14:43 +02:00
committed by GitHub
parent aae1ed04ba
commit af15de93c4
4 changed files with 61 additions and 1 deletions
+5
View File
@@ -1026,6 +1026,7 @@
"default": {
"disabled": false,
"format": "via [$symbol($username@)$stack]($style) ",
"search_upwards": true,
"style": "bold 5",
"symbol": " ",
"version_format": "v${raw}"
@@ -3831,6 +3832,10 @@
"disabled": {
"default": false,
"type": "boolean"
},
"search_upwards": {
"default": true,
"type": "boolean"
}
}
},