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

## foo.js

```js
const derived = false;
export { derived as t };

```

## pagea.js

```js
import { t as derived } from "./foo.js";
function demo() {
	if (derived) console.log("page-a");
}
demo();

```

## pageb.js

```js
import { t as derived } from "./foo.js";
function demo() {
	if (derived) console.log("page-a");
}
demo();

```

# Variant: inlineConstPass2: [inline_const: Config(InlineConstConfig { mode: None, pass: 2 })]

## Assets

### pagea.js

```js
function demo() {}
demo();

```

### pageb.js

```js
function demo() {}
demo();

```