Skip to content

Commit

Permalink
fix: ensure that prisma build is found
Browse files Browse the repository at this point in the history
  • Loading branch information
sjschlapbach committed Aug 15, 2024
1 parent f2558e8 commit 21ef059
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/prisma/src/data/data/TEST.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Prisma from '../../../dist/index.js'
import { AchievementType } from '../../client/index.js'
import { AchievementType } from '../../prisma/client/index.js'
const { ElementType, SessionStatus } = Prisma

export const QUESTIONS = [
Expand Down
2 changes: 1 addition & 1 deletion packages/prisma/src/data/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import {
QuestionInstanceType,
UserLoginScope,
type Element,
} from '../client/index.js'
} from '../prisma/client/index.js'

export async function prepareUser({
name,
Expand Down
2 changes: 1 addition & 1 deletion packages/prisma/src/data/seedTEST.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Prisma from '../../dist/index.js'
import { type Element } from '../client/index.js'
import { type Element } from '../prisma/client/index.js'
import {
COURSE_ID_TEST,
COURSE_ID_TEST2,
Expand Down

0 comments on commit 21ef059

Please sign in to comment.