Nathaniel Tucker

Results 94 comments of Nathaniel Tucker

@carloskelly13 I only use it with `noInline` because I need multiple functions in one example. Because of that my code goes through the simpler path: https://github.com/FormidableLabs/react-live/pull/344/files#diff-8024f5483f023d9a9373678ffd2c1d68cdabde833d00e5d64ff9ba27baf6f0d3R60 Personally I would much...

Interestingly, [sucrase supports typescript now](https://github.com/alangpierce/sucrase/blob/main/src/Options.ts#L22) but since react-live doesn't allow us to configure the options at all, we cannot take advantage of this.

See how this interfaces with #1403 before implementation

Abandoning in favor of https://resthooks.io/rest/api/schema.Entity#shouldReorder

Closing in favor of discussion: https://github.com/data-client/rest-hooks/discussions/2402

Closing in favor of discussion: https://github.com/data-client/rest-hooks/discussions/2403

Can we have an option to disable commonmark? This is creating a lot of issues when I just want to use React 18.

Altering every single file when the last edit time is used in the final site for publish time is not exciting to me. However, I'm very glad to hear about...

@eps1lon This happens if there's an act call within the hook call stack. E.g., ```ts const { result } = renderHook(() => { act(() => {}); return { data: 1...

> Could you elaborate why you're using `act` inside a hook? Async callstack (say a network response) triggering setstate. Since it's async the test itself cannot be inlining the act...