NullVoxPopuli

Results 2059 comments of NullVoxPopuli

ember-teplate-lint must run on gjs and gts files for the upcoming embedded syntax stuff -- which is quite exciting! js files though, I think were supported due to some uncertainty...

There is also the spreadsheet analogy, which i like: - Cell (signal) - Formula (computed)

I think you're running in to the same thing i did, the fix is this: https://github.com/NullVoxPopuli/signal-utils/blob/ef3d29f2dd2ff943714c5f7c1bfd0c89af529ad7/src/subtle/microtask-effect.ts#L24 ```js for (const signal of watcher.getPending()) { signal.get(); } // No args watcher.watch(); ```...

I'm making a utility library here: https://github.com/NullVoxPopuli/signal-utils The implementations and tests are going to be ports from other ecosystems :tada: I can also use this repo's tests to see how...

> Would it be possible to update the readme example? of course! would you like to submit a PR? We also have a working example of the microtaskqueue effect here:...

![roger roger](https://media1.tenor.com/m/EwwRxH1XEU0AAAAC/roger-roger-roger.gif) https://github.com/proposal-signals/proposal-signals/issues/164

@lgarron I'm making a utility library here: https://github.com/NullVoxPopuli/signal-utils/pull/1 which will include a reactive async implementation built upon the polyfill (and will eventually phase out the polyfill when real implementation occurs)....

Like with other proposals, they need to be the minimal feature set possible to reduce bike sheddin / yak shaving / in general longer discussion. If something _can't_ be implemented...

@dead-claudia exactly! That's what i did here: - https://github.com/NullVoxPopuli/signal-utils?tab=readme-ov-file#async-function - https://github.com/NullVoxPopuli/signal-utils/blob/main/src/async-function.ts (Tho, i don't think untrack is needed)