Skip to content

v0.6.3

Compare
Choose a tag to compare
@SyMind SyMind released this 23 Apr 12:23
· 1708 commits to main since this release

What's Changed

Highlights

Provide type declaration for builtin:swc-loader

@rspack/core now provides the type declaration for builtin:swc-loader, which can help you to configure the swc-loader correctly:

// rspack.config.js
module.exports = {
  module: {
    rules: [
      {
        test: /\.js$/,
        use: {
          loader: 'builtin:swc-loader',
+         /** @type {import('@rspack/core').SwcLoaderOptions} */
          options: {
            // some options
          },
        },
      },
    ],
  },
};

Updated Plugin Documentation for Rspack

We've revamped the plugin documentation for Rspack to enhance clarity and improve your experience.

Please visit: https://www.rspack.dev/plugins

image

Exciting New Features 🎉

Bug Fixes 🐞

Other Changes

New Contributors

Full Changelog: v0.6.2...v0.6.3