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

## a.js

```js
import "./shared.js";

```

## b.js

```js
import "./shared.js";

```

## shared.js

```js
//#region shared.js
globalThis.sideEffectExecuted = true;

//#endregion
```