npm @rspack/core 1.2.4
v1.2.4

latest release: 1.2.5
4 days ago

Highlights 💡

Support for SRI

This release introduces a new built-in SubresourceIntegrityPlugin to provide support for Subresource Integrity (SRI).

SubresourceIntegrityPlugin is a Rust rewrite of the webpack-subresource-integrity and is much more faster.

import { experiments } from '@rspack/core';

const { SubresourceIntegrityPlugin } = experiments;

export default {
  plugins: [new SubresourceIntegrityPlugin()],
  output: {
    crossOriginLoading: 'anonymous',
  },
};

Updated Roadmap

The Rspack roadmap has been updated with new targets such as Wasm build and Rstest, see Roadmap.

What's Changed

Performance Improvements ⚡

Exciting New Features 🎉

Bug Fixes 🐞

Document Updates 📖

Other Changes

New Contributors

Full Changelog: v1.2.3...v1.2.4

Don't miss a new core release

NewReleases is sending notifications on new releases.