Kyohei
Kyohei
I've got "ERR_REQUIRE_ESM" in Node v16.6. ``` $ npm run contentful-typescript-codegen > [email protected] contentful-typescript-codegen > contentful-typescript-codegen --output @types/generated/contentful.d.ts Error [ERR_REQUIRE_ESM]: require() of ES Module /Users/tnzk/dev/repo/ORGNAME/PROD_NAME/sveltekit/getContentfulEnvironment.js from /Users/tnzk/dev/repo/ORGNAME/PROD_NAME/sveltekit/node_modules/contentful-typescript-codegen/dist/contentful-typescript-codegen.js not supported. Instead...
@janpio brought me here in https://github.com/prisma/prisma/pull/12907. In Svelte Kit, if we import Prisma in the way the documentation suggests: ```ts import { PrismaClient } from '@prisma/client' const prisma = new...
I have two classes both having an attachment to be delayed-processed. One of them have :processing_image_url option specified and another don't, looks like: ``` ruby class Person < ActiveRecord::Base has_attached_file...