Skip to content

Commit

Permalink
ensure building order
Browse files Browse the repository at this point in the history
  • Loading branch information
tcm390 committed Feb 12, 2025
1 parent 8cff480 commit 03456cf
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion scripts/dev.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@

# Define an array of commands to run.
COMMANDS=(
"turbo run build --filter=!./packages/docs && turbo run dev --filter=./packages/core"
# Ensure core builds first, then plugin-sqlite, then everything else (excluding docs)
"turbo run build --filter=./packages/core \
&& turbo run build --filter=./packages/plugin-sqlite \
&& turbo run build --filter=!./packages/docs --filter=!./packages/core --filter=!./packages/plugin-sqlite"
"turbo run dev --filter=./packages/plugin-sqlite"
"turbo run dev \
--filter=!./packages/agent \
Expand Down

0 comments on commit 03456cf

Please sign in to comment.