Joey Mezzacappa
Joey Mezzacappa
I ran into a similar issue with a different build tool. This may seem a bit hacky, but I was able to get it working by re-compiling `libv86.js` with [SWC](https://swc.rs/)....
+1 - It would be nice to be able to work on a React project without dev-time bundling. I was working on a small project in the browser with `es6-global`...
I noticed that you're passing an `xstyle` prop into `VictoryArea` in your non-working example. Renaming `xstyle` to `style` seems to work, as far as I can tell. Here's a forked...
@brophdawg11 thanks for looking into this! We usually do use Promise.all only in loaders, when possible. In this case, we have three promises for deferred data in multiple loaders in...
> By removing Promise.all() it resolved my issue. I've just replaced `resolve={Promise.all([promise1, promise2])}` with `resolve={[promise1, promise2]}` and adding `await` within the `defer()` function > > ```tsx > export const loader...
As a temporary workaround, I threw this component together. Feels like the types could be simplified a bit, but I didn't bother refactoring once I got it working, as it's...
> **Additional context** In addition, why examples have class components yet ? Could it be possible to have functional components, since they are the ones that are used the most....
@jaymemaurice > I would love to try arachne engine with the belt and have one slicer to rule all the FDM printers. Seems I'm stuck defaulting to Ideamaker. I found...
I'm doing this as a temporary workaround: ```js import debug from 'debug'; (debug.inspectOpts ??= {}).hideDate ??= !!process.env.DEBUG_HIDE_DATE; ```
@diegomura ~~I just noticed "drop cjs support" in the changelog. I could change this to use a top-level `await`, if preferred.~~ Edit: On second thought, that could slow down app...