npm @rspack/core 0.6.3
v0.6.3

latest releases: 0.7.6-canary-f272bd8-20240625122346, 0.7.5, 0.7.3-canary-e3de538-20240625072228...
2 months ago

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

Don't miss a new core release

NewReleases is sending notifications on new releases.