Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
instructr13 committed Oct 10, 2024
1 parent 9191fbf commit e50d391
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,10 @@ jobs:
working-directory: packages/schemas
run: bun test

- name: Test (algorithm)
working-directory: packages/algorithm
run: bun test

- name: Test (mock server)
working-directory: apps/mock-server
run: bun test
Binary file modified bun.lockb
Binary file not shown.
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@
},
"workspaces": ["apps/*", "packages/*"],
"scripts": {
"prepare": "run-s \"prepare-before:*\" && run-p \"prepare:*\"",
"prepare-before:schemas": "cd packages/schemas && bun run build",
"prepare": "run-p \"prepare:*\"",
"prepare:git": "lefthook install",
"prepare:typia": "ts-patch install && typia patch",
"prepare:children": "turbo prepare",
Expand Down
2 changes: 1 addition & 1 deletion packages/algorithm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"type": "module",
"main": "src/index.ts",
"scripts": {
"prepare": "tsup && bun -b run tsup --config tsup.worker.ts",
"build": "tsup && bun -b run tsup --config tsup.worker.ts",
"bench": "vitest bench",
"lint": "biome lint --write ."
},
Expand Down
3 changes: 2 additions & 1 deletion turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@
"$schema": "https://turbo.build/schema.json",
"tasks": {
"prepare": {
"dependsOn": ["^@data-maki/schemas#build", "^@data-maki/algorithm#build"],
"cache": false
},
"build": {
"dependsOn": ["^prepare", "^build"],
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": ["dist/**", "build/**"]
},
Expand Down

0 comments on commit e50d391

Please sign in to comment.