File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -16,14 +16,18 @@ test-functions: build-functions
1616 && cd -
1717
1818deploy-hosting :
19- firebase --project=$(PROJECT ) deploy --only hosting
19+ cd functions \
20+ && npx firebase --project=$(PROJECT ) deploy --only hosting \
21+ && cd -
2022
2123deploy-functions-config :
2224 cd functions \
23- && ./node_modules/.bin/ ts-node src/scripts/deploy-config.ts config/config.json $(PROJECT ) \
25+ && npx ts-node src/scripts/deploy-config.ts config/config.json $(PROJECT ) \
2426 && cd -
2527
2628deploy-functions : test-functions
27- firebase --project=$(PROJECT ) deploy --only functions
29+ cd functions \
30+ && npx firebase --project=$(PROJECT ) deploy --only functions \
31+ && cd -
2832
2933deploy : check-config deploy-functions-config deploy-functions deploy-hosting
You can’t perform that action at this time.
0 commit comments