Fix TS errors and weird instances of undefined error due to prisma upgrade and turbo cache (#3475)

* Fix TS errors

* Always reexecute prisma postinstall as prisma version might change after yarn
This commit is contained in:
Hariom Balhara 2022-07-21 15:29:37 +05:30 committed by GitHub
parent c500952dca
commit faac59fb8e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View File

@ -23,7 +23,7 @@ export function handleErrorsJson(response: Response) {
export function handleErrorsRaw(response: Response) { export function handleErrorsRaw(response: Response) {
if (response.status === 204) { if (response.status === 204) {
return {}; return "{}";
} }
if (!response.ok && response.status < 200 && response.status >= 300) { if (!response.ok && response.status < 200 && response.status >= 300) {
response.text().then(console.log); response.text().then(console.log);

View File

@ -113,6 +113,9 @@
"outputs": ["../../node_modules/@prisma/client/**", "../../node_modules/@prisma/admin-client/**"], "outputs": ["../../node_modules/@prisma/client/**", "../../node_modules/@prisma/admin-client/**"],
"inputs": ["./schema.prisma", "./prisma/schema.prisma"] "inputs": ["./schema.prisma", "./prisma/schema.prisma"]
}, },
"@calcom/prisma#post-install": {
"cache": false
},
"start": {}, "start": {},
"embed-tests": { "embed-tests": {
"cache": false "cache": false