Jeremy

Results 39 comments of Jeremy

I think preact needs a reverse complement of preact/compat, either at runtime or as a codemod. Right now, there's little incentive to use the preact namespace instead of react. As...

Properties that have initial values should be optional

something like this? After some thought, I was thinking it should match anything inside the parenthesis of a function invocation to cover any user defined log stuff. Do people actually...

I suck ass at regex , took me like an hour to cobble that garbage together lol. btw are you in a slack or discord or something? I'd like to...

hmm, ideas: 1 i think the most reliable option that might be easier to implement could be comments? something like "// @browserify-dont-require" ```js require('prismjs') // i do want this in...

trying to get a regex to just replace the contents of all strings that aren't preceded by require( , for ex: input: ``` let fs1 = require("fs") let fs2 =...

made some progress. implementation (made some changes to get it working with react three fiber and react hot loader) ```js var unique = (arr) => [...new Set([...arr].flat())]; /** * TLDR:...

Here's a perf screenshot for comparison. sometimes its faster than esbuild, but usually a little bit slower. the omnify times are mostly just the effects of the small changes in...

@goto-bus-stop pls take a look at the impl below when you have some free time! Passing tests module-deps tests, the fixture below, and working with a react-three-fiber scene. The basic...

I'm not sure how the two are related, but an iife with export default is the best way because browser-pack is already in that format and it doesnt matter. the...