Jason Miller

Results 1187 comments of Jason Miller
trafficstars

@probablyup I'm curious how you ended up with that code from the snippet - normally I'd expect the pure annotation to apply to the `Object.assign` property access, not the function...

What is the use case for loading this via a CDN? It's a 2mb CLI.

Might be worth splitting the discussion here up into two topics: 1. Ergonomic differences between iframe-as-thread and worker-with-dom 2. Spec + technical feasibility (of exposing a DOM to Workers, and...

@martinarvaiaccedo Signals currently supports string style values, but not object style values. To support objects, we'd need to diff the object properties, which starts to erode the purpose of signals...

The reason style updates need to be diffed is to handle cases like this: ```jsx function Demo() { const style = useSignal({ color: 'red', background: 'blue' }); function hover() {...

I'm good leaving this open - it would be good to sync this up with Preact's normal style prop diffing.

Hiya @popey, I'm not sure the dependencies used here work quite properly under npm 3. Can you try using NPM 2? ``` sh npm i npm@2 alias npm=./node_modules/.bin/npm npm install...

I just updated all of the dependencies (they were last updated in December!), including Babel, which was relying on a version of the Chokidar filesystem module that seemed to be...

Thanks for the report, I'm going to update the rather outdated dependencies and see if that helps.

@MilovanovM I just updated 100% of the dependencies (they were very out of date). This should fix the error you encountered. Let me know!