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

## entry.js

```js
import { t as value } from "./share.js";
import assert from "node:assert";

//#region entry.js
assert.equal(value, 1);

//#endregion
```

## main.js

```js
import { t as value } from "./share.js";
import assert from "node:assert";

//#region main.js
assert(value === 1);

//#endregion
```

## share.js

```js
//#region share.js
const value = 1;

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