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 c986038 commit 2b9c849Copy full SHA for 2b9c849
.github/workflows/firebase-deploy.yml
@@ -43,7 +43,7 @@ jobs:
43
firebase deploy -f --only hosting --project things-to-complete
44
45
- name: Install Functions dependencies
46
- run: pnpm install
+ run: npm install
47
working-directory: ./functions
48
49
- name: Deploy functions
README.MD
@@ -1,5 +1,6 @@
1
https://things-to-complete.web.app/
2
3
+needs node 23.10.+
4
5
needs pnpm 10.12.+
6
```bash
firebase.json
@@ -25,8 +25,8 @@
25
"*.local"
26
],
27
"predeploy": [
28
- "pnpm --prefix \"$RESOURCE_DIR\" run lint",
29
- "pnpm --prefix \"$RESOURCE_DIR\" run build"
+ "npm --prefix \"$RESOURCE_DIR\" run lint",
+ "npm --prefix \"$RESOURCE_DIR\" run build"
30
]
31
}
32
0 commit comments