We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55b6e4c commit 753648cCopy full SHA for 753648c
scripts/bin-test/test.ts
@@ -18,10 +18,7 @@ const DEFAULT_OPTIONS = {
18
maxInstances: null,
19
minInstances: null,
20
timeoutSeconds: null,
21
- vpc: {
22
- connector: null,
23
- egressSettings: null,
24
- },
+ vpc: null,
25
serviceAccountEmail: null,
26
ingressSettings: null,
27
};
@@ -103,7 +100,7 @@ async function startBin(
103
100
const getPort = promisify(portfinder.getPort) as () => Promise<number>;
104
101
const port = await getPort();
105
102
106
- const proc = subprocess.spawn("./node_modules/.bin/firebase-functions", [], {
+ const proc = subprocess.spawn("npx", ["firebase-functions"], {
107
cwd: path.resolve(tc.modulePath),
108
env: {
109
PATH: process.env.PATH,
0 commit comments