Skip to content

Commit

Permalink
update to latest prisma
Browse files Browse the repository at this point in the history
  • Loading branch information
ymc9 committed Dec 5, 2024
1 parent a073b82 commit 3c77fb5
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 97 deletions.
1 change: 1 addition & 0 deletions next-env.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />
/// <reference types="next/navigation-types/compat/navigation" />

// NOTE: This file should not be edited
// see https://nextjs.org/docs/basic-features/typescript for more information.
125 changes: 34 additions & 91 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"dependencies": {
"@heroicons/react": "^2.0.12",
"@next-auth/prisma-adapter": "^1.0.6",
"@prisma/client": "^5.19.1",
"@prisma/client": "^6.0.1",
"@vercel/analytics": "^1.0.1",
"@zenstackhq/runtime": "2.10.0",
"@zenstackhq/server": "2.10.0",
Expand Down Expand Up @@ -51,7 +51,7 @@
"eslint": "^7.19.0",
"eslint-config-next": "12.3.1",
"postcss": "^8.4.16",
"prisma": "^5.19.1",
"prisma": "^6.0.1",
"tailwindcss": "^3.1.8",
"typescript": "^5.1.6",
"zenstack": "2.10.0"
Expand Down
12 changes: 8 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,14 @@
"paths": {
"@lib/*": ["lib/*"],
"@components/*": ["lib/components/*"],
"@components": ["lib/components/index"],
".zenstack/*": ["node_modules/.zenstack/*"]
}
"@components": ["lib/components/index"]
},
"plugins": [
{
"name": "next"
}
]
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
}

0 comments on commit 3c77fb5

Please sign in to comment.