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

## MISSING_EXPORT

```text
[MISSING_EXPORT] Error: "default" is not exported by "foo.js".
   ╭─[ main.js:4:8 ]
   │
 4 │ import importedE from "./foo"
   │        ────┬────  
   │            ╰────── Missing export
───╯

```

## MISSING_EXPORT

```text
[MISSING_EXPORT] Error: "default" is not exported by "foo.js".
   ╭─[ main.js:5:10 ]
   │
 5 │ import { default as f } from "./foo"
   │          ───┬───  
   │             ╰───── Missing export
───╯

```

## MISSING_EXPORT

```text
[MISSING_EXPORT] Error: "default" is not exported by "foo.js".
   ╭─[ main.js:6:10 ]
   │
 6 │ export { default as g } from "./foo"
   │          ───┬───  
   │             ╰───── Missing export
───╯

```

## MISSING_EXPORT

```text
[MISSING_EXPORT] Error: "importedA" is not exported by "foo.js".
   ╭─[ main.js:1:10 ]
   │
 1 │ import { importedA, importedB as b } from "./foo"
   │          ────┬────  
   │              ╰────── Missing export
───╯

```

## MISSING_EXPORT

```text
[MISSING_EXPORT] Error: "importedB" is not exported by "foo.js".
   ╭─[ main.js:1:21 ]
   │
 1 │ import { importedA, importedB as b } from "./foo"
   │                     ────┬────  
   │                         ╰────── Missing export
───╯

```

## MISSING_EXPORT

```text
[MISSING_EXPORT] Error: "importedC" is not exported by "foo.js".
   ╭─[ main.js:2:10 ]
   │
 2 │ export { importedC, importedD as d } from "./foo"
   │          ────┬────  
   │              ╰────── Missing export
───╯

```

## MISSING_EXPORT

```text
[MISSING_EXPORT] Error: "importedD" is not exported by "foo.js".
   ╭─[ main.js:2:21 ]
   │
 2 │ export { importedC, importedD as d } from "./foo"
   │                     ────┬────  
   │                         ╰────── Missing export
───╯

```