Alexander Kachkaev
Alexander Kachkaev
๐ @rohanray ๐ A issue request in `next-transpile-modules` has been successfully resolved: https://github.com/martpie/next-transpile-modules/issues/52
Oh wow thanks for the pointer @sam3d โ I have missed that comment somehow. I just [tried](https://github.com/hasharchives/wasm-ts-esm-in-node-jest-and-nextjs/commit/b97821cce79dd1d033f89313eabbfdd479e260f9) your [workaround](https://github.com/vercel/next.js/issues/29362#issuecomment-971377869) in [hasharchives/wasm-ts-esm-in-node-jest-and-nextjs](https://github.com/hasharchives/wasm-ts-esm-in-node-jest-and-nextjs) and it did itโs job! ๐ Awesome stuff!
Hi @jfoclpf! Glad that you are open to accept this change! I donโt have a lot of extra capacity in the coming weeks, so happy for you copy-paste my solution...
I confirm that the problem still exists. It is presenting itself in `prettier-atom`: https://github.com/prettier/prettier-atom/issues/448 When global modules are installed via NVM, `global-modules` (which relies on `global-prefix`) returns null.
Same problem here with [email protected]. I had to add `{"resolutions": {"**/docz-core": "^0.13.0"}` to `package.json` to make sure that there's only one copy of `docz-core` package. Otherwise, both 0.11 and 0.13...
yeah this can be closed I guess
๐ @benoitgrelard! Any chance this PR could be looked into? It potentially fixes a rather serious performance issue โ see https://github.com/radix-ui/primitives/issues/1634#issuecomment-1264347705 and below for details. I use Radix Select in...
@christiankaindl interesting, thanks for sharing your workaround! Do you know if it is applicable to Select? I canโt seem to find `modal={false}` in this component. **UPD** potential fix: https://github.com/radix-ui/primitives/pull/2253
I have managed to patch `eslint-plugin-tailwindcss` in https://github.com/kachkaev/eslint-plugin-tailwindcss-issue-267-mwe/pull/1. It seems to be doing what I expect it to. Can this be converted into a PR or am I missing a...
Iโve stopped using this patch myself. Turns out that object syntax inside `cn` is not that useful and can be omitted: ```ts cn("text-white bg-black", { "p-4": condition, "p-oops": anotherCondition, //...