Skip to content

Commit 792a4bb

Browse files
jamesdanielsProfHercules
authored andcommitted
Web Frameworks deploy, _name is undefined, handle (firebase#5786)
Broke web frameworks deploy in the midnight effort to fix the emulators. Quick fix.
1 parent db53352 commit 792a4bb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/frameworks/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,8 @@ export async function prepareFrameworks(
305305
if (
306306
!experiments.isEnabled("pintags") ||
307307
context._name === "serve" ||
308-
context._name.startsWith("emulators:")
308+
context._name === "emulators:start" ||
309+
context._name === "emulators:exec"
309310
) {
310311
if (!targetNames.includes("functions")) {
311312
targetNames.unshift("functions");

0 commit comments

Comments
 (0)