rolldown 1.0.0

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

## entry.js

```js
//#region bar.js
function bar() {
	throw new Error("test");
}
//#endregion
//#region data.txt
var data_default = "#2041";
//#endregion
//#region entry.js
function foo() {
	bar();
}
foo();
console.log(data_default);
//#endregion

```