Releases: vitejs/vite-plugin-react-swc
v3.2.0
v3.1.0
v3.1.0-beta.2
- Fix HMR for styled components exported alongside other components
- Support TypeScript decorators via the new
tsDecorators
option. This requiresexperimentalDecorators
in tsconfig. - Support plugins via the new
plugins
options
v3.0.1
- Support Emotion via the new
jsxImportSource
option (fixes #25)
To use it with Emotion, update your config to:
export default defineConfig({
plugins: [react({ jsxImportSource: "@emotion/react" })],
});
v3.0.0
This is plugin is now stable! π
To migrate from vite-plugin-swc-react-refresh
, see the 3.0.0-beta.0 changelog.
v3.0.0-beta.2
- breaking: update plugin name to vite:react-swc to match official plugins naming
- fix: don't add React Refresh wrapper for SSR transform (fixes #11)
v3.0.0-beta.1
Fix package.json exports fields
v3.0.0-beta.0
This is the first beta version of the official plugin for using SWC with React in Vite!
Some breaking changes have been made to make the plugin closer to the Babel one while keeping the smallest API surface possible to reduce bugs, encourage future-proof compilation output and allow easier opt-in into future perf improvements (caching, move to other native toolchain, ...):
- Automatically enable automatic JSX runtime. "classic" runtime is not supported
- Skip transformation for
.js
files - Enforce useDefineForClassFields
- Don't pass
esbuild.define
config option to SWC. You can use the top level define option instead - Use default export
To migrate, change your config to:
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react-swc";
export default defineConfig({
plugins: [react()],
});
This new release also include a runtime check for React refresh boundaries. When the conditions are not met (most of the time, exporting React components alongside functions or constant), the module is invalidated with a warning message to help you catch issues while keeping you page up-to date with code changes.
v2.2.1
v2.2.0
- Always provide parser options to fix issue with
.jsx
imports. Relying on file extension for this is more buggy than I though - Extract line and column in SWC errors to make overlay filename clickable
- Fix plugin name (
react-refresh
->swc-react-refresh
)