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

## src_entry_js.js

```js
// HIDDEN [rolldown:runtime]
//#region node_modules/demo-pkg/index.js
var require_demo_pkg = /* @__PURE__ */ __commonJS({ "node_modules/demo-pkg/index.js": ((exports, module) => {
	module.exports = function() {
		return 123;
	};
}) });

//#endregion
//#region src/entry.js
var import_demo_pkg = /* @__PURE__ */ __toESM(require_demo_pkg());
console.log((0, import_demo_pkg.default)());

//#endregion
```