Skip to content

agent-react-devtools@0.2.2

Latest

Choose a tag to compare

@github-actions github-actions released this 11 Feb 21:53
· 5 commits to main since this release
5704136

Patch Changes

  • 370ef23: fix: prevent race condition where React loads before devtools hook is installed

    The connect module's dynamic import('react-devtools-core') yielded control before initialize() could install the hook, allowing react-dom to load first and miss the connection. Added top-level await to block dependent modules until the hook is ready, and updated the Vite plugin to enable top-level-await in esbuild's dep optimizer.