Skip to content

Commit 4fac02b

Browse files
angular-robotjosephperrott
authored andcommitted
build: lock file maintenance (#2400)
PR Close #2400
1 parent d77c069 commit 4fac02b

File tree

6 files changed

+775
-783
lines changed

6 files changed

+775
-783
lines changed

.github/local-actions/branch-manager/main.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58195,7 +58195,7 @@ function createPrompt(view) {
5819558195
throw error2;
5819658196
}).finally(() => {
5819758197
cleanups.forEach((cleanup) => cleanup());
58198-
screen.done({ clearContent: Boolean(context2 == null ? void 0 : context2.clearPromptOnDone) });
58198+
screen.done({ clearContent: Boolean(context2.clearPromptOnDone) });
5819958199
output.end();
5820058200
}).then(() => promise), { cancel });
5820158201
});
@@ -58764,7 +58764,7 @@ var esm_default8 = createPrompt((config, done) => {
5876458764
selectedChoice = choices.find((choice) => isSelectableChoice(choice) && choice.key === value);
5876558765
}
5876658766
if (isSelectableChoice(selectedChoice)) {
58767-
setValue(selectedChoice.short ?? selectedChoice.name ?? String(selectedChoice.value));
58767+
setValue(selectedChoice.short);
5876858768
setStatus("done");
5876958769
done(selectedChoice.value);
5877058770
} else if (value === "") {
@@ -59001,7 +59001,7 @@ ${theme.style.help("(Use arrow keys)")}`;
5900159001
}
5900259002
let searchStr;
5900359003
if (status === "done" && selectedChoice) {
59004-
const answer = selectedChoice.short ?? selectedChoice.name;
59004+
const answer = selectedChoice.short;
5900559005
return `${prefix} ${message} ${theme.style.answer(answer)}`;
5900659006
} else {
5900759007
searchStr = theme.style.searchTerm(searchTerm);

.github/local-actions/changelog/main.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57758,7 +57758,7 @@ function createPrompt(view) {
5775857758
throw error2;
5775957759
}).finally(() => {
5776057760
cleanups.forEach((cleanup) => cleanup());
57761-
screen.done({ clearContent: Boolean(context3 == null ? void 0 : context3.clearPromptOnDone) });
57761+
screen.done({ clearContent: Boolean(context3.clearPromptOnDone) });
5776257762
output.end();
5776357763
}).then(() => promise), { cancel });
5776457764
});
@@ -58327,7 +58327,7 @@ var esm_default8 = createPrompt((config2, done) => {
5832758327
selectedChoice = choices.find((choice) => isSelectableChoice(choice) && choice.key === value);
5832858328
}
5832958329
if (isSelectableChoice(selectedChoice)) {
58330-
setValue(selectedChoice.short ?? selectedChoice.name ?? String(selectedChoice.value));
58330+
setValue(selectedChoice.short);
5833158331
setStatus("done");
5833258332
done(selectedChoice.value);
5833358333
} else if (value === "") {
@@ -58564,7 +58564,7 @@ ${theme.style.help("(Use arrow keys)")}`;
5856458564
}
5856558565
let searchStr;
5856658566
if (status === "done" && selectedChoice) {
58567-
const answer = selectedChoice.short ?? selectedChoice.name;
58567+
const answer = selectedChoice.short;
5856858568
return `${prefix} ${message} ${theme.style.answer(answer)}`;
5856958569
} else {
5857058570
searchStr = theme.style.searchTerm(searchTerm);

0 commit comments

Comments
 (0)