·
17 commits
to main
since this release
Patch Changes
-
46a7013: Fix: Vite/React Fast Refresh no longer rejects a Callable as "incompatible" in the published build, so editing a Callable's own source while a call is open hot-updates in place instead of triggering a full reload that closes it (ADR-0022, #110).
The minified bundle renamed the returned component's function to a lowercase identifier, which fails react-refresh's
isLikelyComponentTypename check — and because the truthy minifiednameshadowsdisplayName, neither settingdisplayNamemanually nor thereact-call/viteplugin could work around it.createCallablenow pins an uppercasenameon the Callable (dev-only; production output is byte-for-byte unchanged), restoring Fast Refresh acceptance for the artifact consumers actually install.