Skip to content

Commit 85ea802

Browse files
authored
Web Frameworks deploy, _name is undefined, handle (#5786)
Broke web frameworks deploy in the midnight effort to fix the emulators. Quick fix.
1 parent 90bf949 commit 85ea802

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
@@ -304,7 +304,8 @@ export async function prepareFrameworks(
304304
if (
305305
!experiments.isEnabled("pintags") ||
306306
context._name === "serve" ||
307-
context._name.startsWith("emulators:")
307+
context._name === "emulators:start" ||
308+
context._name === "emulators:exec"
308309
) {
309310
if (!targetNames.includes("functions")) {
310311
targetNames.unshift("functions");

0 commit comments

Comments
 (0)