npm @rspack/core 0.3.8
v0.3.8

latest releases: 1.0.8, 1.0.7, 1.0.6...
11 months ago

Highlights

Top-level await

Support top-level await and enabled by default, or you can disable this by experiments.topLevelAwait = false.
Top-level await can only be used in ECMAScript Module (type: "javascript/esm"), with this feature you can use await at top-level, await resources, await import, etc.

const db = await import('./db.js');
const connection = await db.connect();

What's Changed

Exciting New Features 🎉

Bug Fixes 🐞

Other Changes

New Contributors

Full Changelog: v0.3.7...v0.3.8

Don't miss a new core release

NewReleases is sending notifications on new releases.