You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`On future invocations of "firebase deploy", your local source will be deployed to ${cfg.backendId}. You can edit this setting in your firebase.json at any time.`,
111
+
`On future invocations of "firebase deploy", your local source will ${!confirmDeploy ? "not " : ""}be deployed to ${cfg.backendId}. You can edit this setting in your firebase.json at any time.`,
110
112
);
111
113
if(!confirmDeploy){
112
-
logLabeledWarning("apphosting",`Skipping deployment of backend ${cfg.backendId}`);
`Skipping deployments of backend(s) ${notFoundBackends.map((cfg)=>cfg.backendId).join(", ")}; `+
128
+
"the backend(s) do not exist yet and we cannot create them for you because you must choose primary regions for each one. "+
129
+
"Please run 'firebase deploy' without the --force flag, or 'firebase apphosting:backends:create' to create the backend, "+
130
+
"then retry deployment.",
131
+
);
132
+
return;
133
+
}
134
+
constconfirmCreate=awaitconfirm({
135
+
default: true,
136
+
message: `Did not find backend(s) ${notFoundBackends.map((cfg)=>cfg.backendId).join(", ")}. Do you want to create them (you'll have the option to select which to create in the next step)?`,
137
+
});
138
+
if(confirmCreate){
139
+
constselected=awaitcheckbox<string>({
140
+
message: "Which backends do you want to create and deploy to?",
`Skipping deployments of backend(s) ${notFoundBackends.map((cfg)=>cfg.backendId).join(", ")}; `+
128
-
"the backend(s) do not exist yet and we cannot create them for you because you must choose primary regions for each one. "+
129
-
"Please run 'firebase deploy' without the --force flag, or 'firebase apphosting:backends:create' to create the backend, "+
130
-
"then retry deployment.",
159
+
`Skipping deployment of backend(s) ${skippedBackends.map((cfg)=>cfg.backendId).join(", ")}.`,
131
160
);
132
-
return;
133
-
}
134
-
constconfirmCreate=awaitconfirm({
135
-
default: true,
136
-
message: `Did not find backend(s) ${notFoundBackends.map((cfg)=>cfg.backendId).join(", ")}. Do you want to create them (you'll have the option to select which to create in the next step)?`,
137
-
});
138
-
if(!confirmCreate){
139
-
return;
140
-
}
141
-
constselected=awaitcheckbox<string>({
142
-
message: "Which backends do you want to create and deploy to?",
0 commit comments