Andrew Kazakov

Results 22 comments of Andrew Kazakov

Could it also be possible to implement removal of all the data stored in a dropped field? I faced the bug in question when I was trying to adapt the...

It (kind of) prevents fields duplication problem if all fields are required (I wish JSON schema had an easy and safe way to express this). Kind of, because if new...

Hey @andrewvasilchuk any chance you review this one? 🙏

The problem is caused by [missing `export = defaultExport;` in the declaration file](https://arethetypeswrong.github.io/?p=puppeteer-extra%403.3.6). Until it is fixed, you can simply add this line manually and [patch-package](https://github.com/ds300/patch-package).

I managed to make a custom column component inside a **custom** table component work after 1. Applying the following patch (use [`patch-package`](https://github.com/ds300/patch-package) or pnpm): ```patch diff --git a/utils/utils.esm.js b/utils/utils.esm.js index...

I had to use `patch-package` to patch this types file to satisfy TypeScript like this (don't copy this patch though, better create your own): ```patch diff --git a/node_modules/@nuxt/content/dist/runtime/components/ContentRendererMarkdown.vue b/node_modules/@nuxt/content/dist/runtime/components/ContentRendererMarkdown.vue index...

Thanks for the response - I largely agree with you, I wasn't even sure if it's worth reporting. Still want to leave here my implementation idea just in case there's...

In Nuxt 3, this error happened to me when I was registering the lazyload plugin only on client. You just need to register it both on client and server (remove...

Hey! I'm curious why you compile a server library with webpack? If you really can't avoid that, would making webpack resolve `mongoose-zod` to `dist/index.cjs` make the compilation possible (since the...

Hi @michaelschufi thank you! The supported version range is correct, this package only currently supports mongoose 6. I'm planning to investigate what changes are required for supporting the next major...