rolldown 0.1.0

Fast JavaScript bundler in Rust, designed for the future of Vite
Documentation
---
source: crates/rolldown_testing/src/integration_test.rs
---
# Assets

## a.js

```js
// HIDDEN [rolldown:runtime]
//#region b.js
var require_b = /* @__PURE__ */ __commonJS({ "b.js": ((exports) => {
	exports.foo = 213;
}) });

//#endregion
//#region a.js
x ? __require("a") : y ? require_b() : __require("c");
x ? y ? __require("a") : require_b() : __require(c);

//#endregion
```