brk_rolldown 0.8.0

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

## main.js

```js
import { t as lib_ui_exports } from "./ui.js";
import { n as lib_npm_a_exports, t as lib_npm_b_exports } from "./other-libs.js";

export { lib_npm_a_exports as libA, lib_npm_b_exports as libB, lib_ui_exports as ui };
```

## other-libs.js

```js
import { t as __exportAll } from "./rolldown-runtime.js";

//#region node_modules/lib-npm-a/index.js
var lib_npm_a_exports = /* @__PURE__ */ __exportAll({ default: () => lib_npm_a_default });
var lib_npm_a_default = "npm-a";

//#endregion
//#region node_modules/lib-npm-b/index.js
var lib_npm_b_exports = /* @__PURE__ */ __exportAll({ default: () => lib_npm_b_default });
var lib_npm_b_default = "npm-b";

//#endregion
export { lib_npm_a_exports as n, lib_npm_b_exports as t };
```

## rolldown-runtime.js

```js
//#region rolldown:runtime
var __defProp = Object.defineProperty;
var __exportAll = (all, symbols) => {
	let target = {};
	for (var name in all) {
		__defProp(target, name, {
			get: all[name],
			enumerable: true
		});
	}
	if (symbols) {
		__defProp(target, Symbol.toStringTag, { value: "Module" });
	}
	return target;
};

//#endregion
export { __exportAll as t };
```

## ui.js

```js
import { t as __exportAll } from "./rolldown-runtime.js";

//#region node_modules/lib-ui/index.js
var lib_ui_exports = /* @__PURE__ */ __exportAll({ default: () => lib_ui_default });
var lib_ui_default = "ui";

//#endregion
export { lib_ui_exports as t };
```