MCPcopy Create free account
hub / github.com/firebase/firebase-tools / deploy

Function deploy

scripts/dataconnect-test/tests.ts:69–80  ·  view source on GitHub ↗
(force: boolean)

Source from the content-addressed store, hash-verified

67}
68
69async function deploy(force: boolean) {
70 const args = ["--only", "dataconnect"];
71 if (force) {
72 args.push("--force");
73 }
74 if (FIREBASE_DEBUG) {
75 args.push("--debug");
76 }
77 return await cli.exec("deploy", FIREBASE_PROJECT, args, __dirname, /** quiet=*/ false, {
78 FIREBASE_CLI_EXPERIMENTS: "dataconnect",
79 });
80}
81
82function toPath(p: string) {
83 return path.join(__dirname, p);

Callers 1

tests.tsFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…