Skip to content

Commit

Permalink
fix: remove firebase preDeploy in favor of turbo task graph
Browse files Browse the repository at this point in the history
  • Loading branch information
yamcodes committed Mar 30, 2024
1 parent 85ba664 commit 544734e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion firebase.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"functions": [
{
"source": "apps/api",
"predeploy": ["pnpm --filter api lint", "pnpm --filter api build"],
"codebase": "default",
"ignore": [
"node_modules",
Expand Down
2 changes: 1 addition & 1 deletion turbo.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"pipeline": {
"build": {
"dependsOn": ["^build"],
"dependsOn": ["^build", "lint"],
"outputs": ["dist/**"]
},
"deploy": {
Expand Down

0 comments on commit 544734e

Please sign in to comment.