Robbie Speed

Results 6 issues of Robbie Speed

Similar to #8343 the typings generated for `@storybook/react` end up including node and polluting the global types. From the top of the generated `@storybook/react/dist/client/preview/index.d.ts`: ```ts /// /// import { ClientStoryApi,...

bug
app: react
has workaround
typescript

This is important for composing reactive selectors like: ```ts declare function createSelector( input: Signal, mapper: (isSelected: boolean) => U ): (matchValue: T) => Signal; const classNameSelector = createSelector(selectedIdSignal, (isSelected) =>...

This adds 3 new tests, 2 of which currently fail: - collects out of scope consumers (✅): Ensures abandoned Computed's (not consumed by anything, and no references) won't cause a...

Thank you for the benchmark! This PR adds some important GC related tests, `collectOutOfScopeConsumers` is most important since it can catch the common issue of out of scope computed's causing...

When working on adding GC tests #8, I had a few other improvement ideas that came to mind. So I'll suggest them all here, and I'd be happy to make...

## Proposal Add `requestSettledCallback` to the subtle namespace. This function would schedule a callback to run the next time graph propagation completes (everything has marked dirty), after a `signal.set()` call...