solid-refresh
solid-refresh copied to clipboard
i'm using @solid-devtools/overlay in a project along with solid-refresh i noticed in the overlay the props/signals/memos are missing names, which can be solved by injecting `solid-devtools/babel`'s `namePlugin` into the build...
a component approximately like: ```ts export const InlineTextArea = (props: { setRef?: (ref: HTMLInputElement) => void; }) => { return ( void; }) => { return (() => { const...
i'm working an complicated build pipeline where i added solid-refresh babel plugin, and encountered the following issue when `solid-primitives/refs` is processed: ```js solid-primitives/refs/refs.ts(98,9): Property 'ref' of exported interface has or...
i have a tsx file roughly like: ```js import { ResultKind } from './kind.js' ... resolvedCommand.kind === ResultKind.FOO ``` where kind.js is: ```js export const enum ResultKind { FOO, BAR,...
It looks like items added to `registry.components` and `registry.contexts` maps are never removed. And because items for components hold a reference to a signal setter, the signal created in `$$component`...
Closes #81
Documentation: https://bun.com/docs/bundler/hot-reloading > Bun implements a client-side HMR API modeled after Vite's import.meta.hot API So most of the code implemented for Vite can be reused for Bun's implementation. > However,...
in the following example, when refreshed, `CompB` is created more times than it should ```jsx // ex. App.tsx has single export const function CompA() { console.log('A'); return ; } function...