Skip to content

Commit

Permalink
Web Frameworks deploy, _name is undefined, handle (#5786)
Browse files Browse the repository at this point in the history
Broke web frameworks deploy in the midnight effort to fix the emulators. Quick fix.
  • Loading branch information
jamesdaniels authored May 3, 2023
1 parent 90bf949 commit 85ea802
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/frameworks/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,8 @@ export async function prepareFrameworks(
if (
!experiments.isEnabled("pintags") ||
context._name === "serve" ||
context._name.startsWith("emulators:")
context._name === "emulators:start" ||
context._name === "emulators:exec"
) {
if (!targetNames.includes("functions")) {
targetNames.unshift("functions");
Expand Down

0 comments on commit 85ea802

Please # to comment.