Skip to content
This repository has been archived by the owner on Apr 12, 2024. It is now read-only.

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
scffs committed Dec 7, 2023
1 parent c147732 commit 7cd4ff2
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/build-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ jobs:
- name: Install dependencies in API
run: |
cd apps/api
bun add @prisma/client
bun i
- name: API build
Expand Down
3 changes: 2 additions & 1 deletion apps/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
},
"devDependencies": {
"bun-types": "latest",
"prisma": "^5.6.0"
"prisma": "^5.6.0",
"shared": "workspace:*"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion apps/api/src/handlers/userHandler.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { User } from '@prisma/client'
import { getAllUsers, getUserById } from '../services/userService'
import { ApiResponse, ContextWith } from '../types'
import { User } from 'shared'

type Params = { id: string }

Expand Down
Binary file modified bun.lockb
Binary file not shown.

0 comments on commit 7cd4ff2

Please sign in to comment.