Skip to content

Commit

Permalink
remove subscribe start mode
Browse files Browse the repository at this point in the history
  • Loading branch information
AlCalzone committed Feb 12, 2024
1 parent b92cbd1 commit 5d0fc06
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions src/lib/core/questions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -424,13 +424,9 @@ export const questionGroups: QuestionGroup[] = [
hint: dim.gray("(recommended for most adapters)"),
value: "daemon",
},
{
message: `when the ".alive" state is true`,
value: "subscribe",
},
{ message: "depending on a schedule", value: "schedule" },
{
message: "when the instance object changes",
message: "only once after changing the instance object",
value: "once",
},
{ message: "never", value: "none" },
Expand Down Expand Up @@ -1026,7 +1022,7 @@ export interface Answers {
gitCommit?: "yes" | "no";
defaultBranch?: "main" | "master";
dependabot?: "yes" | "no";
startMode?: "daemon" | "schedule" | "subscribe" | "once" | "none";
startMode?: "daemon" | "schedule" | "once" | "none";
scheduleStartOnChange?: "yes" | "no";
connectionIndicator?: "yes" | "no";
connectionType?: "cloud" | "local";
Expand Down

0 comments on commit 5d0fc06

Please sign in to comment.