npm @rspack/cli 1.3.1
v1.3.1

latest release: 1.3.2
2 days ago

Highlights

🚀 Support running JavaScript loader in parallel

Added a way to run JavaScript loader in parallel driven by worker_threads, using the max thread available on the OS.

This feature is still experimental. To enable parallelism, set Rule.use.parallel = true and experiments.parallelLoader = true:

module.exports = {
  module: {
    rules: [
      {
          test: /\.less$/,
          use: [
             {
                loader: "less-loader",
+               parallel: true,
                options: { ... }
             }
          ]
          type: "css"
      }
    ]
  },
  experiments: {
      css: true,
+     parallelLoader: true
  }
}

In big projects like 100x antd.less, we got 2.26x performance boost. (Tested on Apple M2 Max, 64G)

Related PR: #9807

⚠️ Fixed some critical bugs in 1.3.0

  • fix No unique code generation entry for unspecified runtime panic when using with devtool: 'eval-source-map'. Related issue: #9837
  • fix should have best match panic when using with rspack.CssExtractRspackPlugin. Related issue: #9833

What's Changed

Exciting New Features 🎉

  • feat: support experimental loader parallelism by @h-a-n-a in #9807
  • feat: support passing PathBuf and &Path to Context by @h-a-n-a in #9848

Bug Fixes 🐞

  • fix: make Compilation check logs clearer by @chenjiahan in #9853
  • fix: should remove all sub chunks if chunk is removed by @JSerFeng in #9845
  • fix: add return statement for dynamic importing script externals by @Leonewu in #9842
  • fix(deps): update @rspack/dev-server to v1.1.1 by @chenjiahan in #9860
  • fix: eval source map panic at getting codegen results by @ahabhgk in #9862

Document Updates 📖

Other Changes

New Contributors

Full Changelog: v1.3.0...v1.3.1

Don't miss a new cli release

NewReleases is sending notifications on new releases.