jrmyio

Results 48 comments of jrmyio

Same issue here with just this: ``` import React from 'react'; import ReactDOM from 'react-dom'; import JSONTree from 'react-json-tree'; ReactDOM.render( , document.getElementById('root') ); ``` Neither proposed `@rollup/plugin-commonjs` or `rollup-plugin-cjs` worked...

> @jrmyio Disable minification to see the real error [#2139 (comment)](https://github.com/vitejs/vite/issues/2139#issuecomment-802981228) Thanks, the error is ``` Uncaught ReferenceError: Cannot access '__çjs$synthetic__' before initialization at vendor.0646077f.js:1 (anonymous) @ vendor.0646077f.js:1 ``` when...

This seems to work quite well, however when trying to use esbuild targeting esm with `prisma` in it, it still bugged out on: https://github.com/prisma/prisma/blob/cd0ec0a3d84bbc1ea0d81e7cf9c519f18e405bc0/packages/engine-core/src/library/LibraryEngine.ts#L502 . I guess it will continue...

@ctjlewis This looks like an interesting approach that might even fix the issues I had with prisma. However, how does esbuild know the modules required with 'require' should be part...

Also running into issues when enabling permanentTrackY to true. Although my problem might be totally unrelated to OP's problem as I am having problems with react-measure and toggling "display: none"...

I get a leak on each request, but it depends how I use it in the javascript call in node.js: http://pastebin.com/7fsB7A4K

Also running into some issues with cancel(). Maybe cancel() itself should return a Promise when it is done and the onCancel has been finished? Or maybe cancel() can return the...

I am running into simular problems in a non next.js project. Upgrading from webpack 4 to webpack 5 did not fix it, sideEffects: "false" in the package.json does enable tree...

Have you tried using useContext inside a styled component? I am not aware if this is supposed to be supported and bug free but it does seem to wo ok.