Josias Iquabius
Josias Iquabius
I'm stuck at version 4.1.6 to avoid this error. Relevant dependencies: ```json { "dependencies": { "@prisma/client": "^3.14.0" }, "devDependencies": { "nx": "14.5.2", "prisma": "^3.14.0", "prisma-nestjs-graphql": "^15.2.1", "ts-jest": "27.1.4", "ts-node": "10.8.2",...
I got this cryptic error: `TypeError: Cannot convert undefined or null to object` It took quite a bit of time to pinpoint where I made the mistake because there was...
I ran into an issue after upgrading `@nrwl/*` packages and running `npx nx run myapp:start`: `Cannot find module '@angular-devkit/core'` Expand to see full error output ```sh ➜ npx nx run...
I patched it like this: ```diff diff --git a/node_modules/stylis-plugin-rtl/types/stylis-rtl.d.ts b/node_modules/stylis-plugin-rtl/types/stylis-rtl.d.ts index acb55fd..f7f8791 100644 --- a/node_modules/stylis-plugin-rtl/types/stylis-rtl.d.ts +++ b/node_modules/stylis-plugin-rtl/types/stylis-rtl.d.ts @@ -1,3 +1,10 @@ -declare function stylisRTLPlugin(context: number, content: string): string | undefined;...