yarn @rspack/cli 0.3.8
v0.3.8

latest releases: 0.7.0-beta.2-canary-89c6913-20240527004336, 0.7.0-beta.2-canary-89c6913-20240526004502, 0.7.0-beta.2-canary-89c6913-20240525004143...
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 cli release

NewReleases is sending notifications on new releases.