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
---
# warnings

## MISSING_EXPORT

```text
[MISSING_EXPORT] Warning: "default" is not exported by "foo.ts".
   ╭─[ main.ts:1:8 ]
   │
 1 │ import dc_def, { bar as dc } from "./foo";
   │        ───┬──  
   │           ╰──── Missing export
   │ 
   │ Note: If you meant to import a type rather than a value, make sure to add the `type` modifier (e.g. `import { type Foo } from './foo'`).
───╯

```

# Assets

## main.js

```js
//#region foo.ts
let bar = 123;

//#endregion
//#region main.ts
var main_default = [dc_def, bar];

//#endregion
export { main_default as default };
```