Skip to content

v0.5.7

Compare
Choose a tag to compare
@Boshen Boshen released this 12 Mar 03:37
· 322 commits to main since this release

What's Changed

Highlights

Support experimental SWC wasm plugins for builtin:swc-loader

Aligned wasm plugin architecture with JavaScript swc-loader.
Check out the detail at swc plugins.

{
  loader: "builtin:swc-loader",
  options: {
    jsc: {
      experimental: {
        plugins: [
          [
            "@swc/plugin-remove-console",
            {
              exclude: ["error"],
            },
          ],
        ],
      },
    },
  },
};

Great work done by @dm33tri πŸŽ‰.

Exciting New Features πŸŽ‰

Bug Fixes 🐞

Other Changes

New Contributors

Full Changelog: v0.5.6...v0.5.7