blun-king-cli 9.1.26 → 9.1.27
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/blun.mjs +5 -5
- package/package.json +1 -1
package/blun.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
// BLUN_BUILD_INPUT_SHA256:
|
|
2
|
+
// BLUN_BUILD_INPUT_SHA256:75877a3f7504159ab054a69baf6fa6b2abb4cc820682dd9cb75612e606425ec5
|
|
3
3
|
import { fileURLToPath as __cjsShimFileURLToPath } from 'node:url';
|
|
4
4
|
import { dirname as __cjsShimDirname } from 'node:path';
|
|
5
5
|
const __filename = __cjsShimFileURLToPath(import.meta.url);
|
|
@@ -500188,7 +500188,7 @@ function promptStartupPersonalMemoryConsent(host, copy) {
|
|
|
500188
500188
|
const finish = (choice) => {
|
|
500189
500189
|
if (done) return;
|
|
500190
500190
|
done = true;
|
|
500191
|
-
host.
|
|
500191
|
+
host.restoreEditor();
|
|
500192
500192
|
resolve(choice);
|
|
500193
500193
|
};
|
|
500194
500194
|
host.mountEditorReplacement(new ChoicePickerComponent({
|
|
@@ -507582,7 +507582,7 @@ function promptStartupCustomerMistakeConsent(host, copy) {
|
|
|
507582
507582
|
const finish = (choice) => {
|
|
507583
507583
|
if (settled) return;
|
|
507584
507584
|
settled = true;
|
|
507585
|
-
host.
|
|
507585
|
+
host.restoreEditor();
|
|
507586
507586
|
resolve(choice);
|
|
507587
507587
|
};
|
|
507588
507588
|
host.mountEditorReplacement(new ChoicePickerComponent({
|
|
@@ -511879,8 +511879,8 @@ var BlunTUI = class {
|
|
|
511879
511879
|
mountEditorReplacement: (panel) => {
|
|
511880
511880
|
this.mountEditorReplacement(panel);
|
|
511881
511881
|
},
|
|
511882
|
-
|
|
511883
|
-
this.
|
|
511882
|
+
restoreEditor: () => {
|
|
511883
|
+
this.restoreEditor();
|
|
511884
511884
|
},
|
|
511885
511885
|
showWarning: (message) => {
|
|
511886
511886
|
this.showStatus(message, "warning");
|