Jason Miller

Results 1189 comments of Jason Miller

Are either of you able to give an example.of where implicit or explicit termination is necessary? I can think of a few, just want to confirm that this won't lead...

@aelgasser the reason I ask is because it seems like terminating the workers in this case is actually hurting performance. Unlike OS threads, Workers do not have any form of...

I'm on the fence about this one - I don't know if we should support `.htm` as an extension given the fractional usage and also given that WMR already uses...

I mentioned it to Marvin offline, but I'll echo here: I'm 100% in for landing a proper error message here, but I'm waffling on whether to support `.htm` files. A...

Hiya @Ayc0 - thanks for opening an issue for this, it's been on my mind a lot. I have an implementation that should be able to be airlifted into Microbundle,...

The CommonJS output is CommonJS, not ES Modules. ES Modules consumers should use the ES Modules output. Microbundle tells you to set up your package.json so that this is the...

FWIW Microbundle used to detect name-only and default-only exports and remove `__esModule` only in those cases. It's possible we need to provide an option to bring that behavior back.

The options for this changed dramatically in recent `@rollup/plugin-commonjs` versions. There are some new ones that are perhaps more reasonable generated output that we could consider. The reason we have...

How are you importing `LocaleShape` in your LocaleChooser module?

Any chance you happen to have a custom Babel configuration? Some presets for React include [babel-plugin-transform-react-remove-prop-types](https://www.npmjs.com/package/babel-plugin-transform-react-remove-prop-types) in production, which is the environment microbundle builds for, and that would replace `LocaleShape`...