Skip to content

Releases: vitejs/vite-plugin-react-swc

v3.1.0-beta.2

12 Jan 20:49
Compare
Choose a tag to compare
v3.1.0-beta.2 Pre-release
Pre-release
  • Fix HMR for styled components exported alongside other components
  • Support TypeScript decorators via the new tsDecorators option. This requires experimentalDecorators in tsconfig.
  • Support plugins via the new plugins options

v3.0.1

16 Dec 11:19
Compare
Choose a tag to compare
  • 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" })],
});
  • Fix HMR when using Vite base option (fixes #18)
  • Fix usage with workers (fixes #23)
  • Fix usage with Vite Ruby and Laravel Vite (#20)
  • Fix plugin default export when using commonjs (fixes #14)

v3.0.0

09 Dec 10:07
Compare
Choose a tag to compare

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

08 Dec 13:21
Compare
Choose a tag to compare
v3.0.0-beta.2 Pre-release
Pre-release
  • 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

06 Dec 10:03
Compare
Choose a tag to compare
v3.0.0-beta.1 Pre-release
Pre-release

Fix package.json exports fields

v3.0.0-beta.0

05 Dec 10:33
Compare
Choose a tag to compare
v3.0.0-beta.0 Pre-release
Pre-release

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

02 Nov 00:12
Compare
Choose a tag to compare

Skip react-refresh on SSR (Fixes #2)

v2.2.0

30 Oct 02:25
Compare
Choose a tag to compare
  • 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)

v2.1.0

22 Oct 00:25
Compare
Choose a tag to compare

Add source maps support

v2.0.3

27 Sep 16:46
Compare
Choose a tag to compare

Include react/jsx-dev-runtime for dependencies optimisation when using automatic runtime.