Skip to content

Releases: corvallo/react-compiler-report

0.1.1

23 Dec 09:58
147c1b0

Choose a tag to compare

What's Changed

Full Changelog: 0.1.0...0.1.1

React Compiler Report

22 Dec 11:05
e834b28

Choose a tag to compare

🚀 Initial Release

We are excited to introduce vite-plugin-react-compiler-report v0.1.0!
This plugin provides deep insights into the React Compiler's optimizations with a focus on developer experience and visual clarity.

✨ Key Features

  • Premium HTML Report: A beautiful, dark-mode UI to visualize compilation success and failures. Generated directly by the plugin without external dependencies.
  • Enhanced Terminal Logging:
    • Dev Mode: Real-time feedback (✓ 10 compiled | ✕ 1 failed) as you work.
    • Build Mode: Concise summary of optimizations and failures at the end of the build.
  • Zero Config: Works out of the box. No complex setup required.
  • CI-Friendly: Removed auto-open behavior to ensure smooth integration with CI/CD pipelines.

📦 Installation

npm install -D vite-plugin-react-compiler-report

🛠 Configuration


// vite.config.ts
reactCompilerReport({
  ui: true // Enable the HTML report
})