Skip to content

Commit

Permalink
fix(pkg): ensure to build before fixture load (#918)
Browse files Browse the repository at this point in the history
  • Loading branch information
douglasduteil authored Jan 8, 2025
1 parent 1421a6c commit 001aecf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
"scripts": {
"build": "run-s build:**",
"build:assets": "vite build --clearScreen false",
"build:db:conditionaly-load-fixtures": "if [ \"$RUN_FIXTURES\" = \"True\" ]; then npm run fixtures:load; fi",
"build:workspaces": "npm run build --if-present --workspaces",
"build:db:conditionaly-load-fixtures": "if [ \"$RUN_FIXTURES\" = \"True\" ]; then npm run fixtures:load; fi",
"build:db:migrate": "npm run --silent migrate -- up",
"delete-database": "if [ \"$ENABLE_DATABASE_DELETION\" = \"True\" ]; then tsx scripts/run-sql-script.ts scripts/delete_all.sql; fi",
"predev": "npm run build:workspaces",
Expand Down

0 comments on commit 001aecf

Please sign in to comment.