brk_rolldown 0.8.0

Fast JavaScript bundler in Rust, designed for the future of Vite
Documentation
use std::sync::Arc;

use rolldown::{BundlerOptions, InputItem};
use rolldown_testing::{manual_integration_test, test_config::TestMeta};

#[tokio::test(flavor = "multi_thread")]
async fn test() {
  manual_integration_test!()
    .build(TestMeta { expect_error: false, ..Default::default() })
    .run(BundlerOptions {
      input: Some(vec![InputItem {
        name: Some("entry".to_string()),
        import: "entry.js".to_string(),
      }]),
      chunk_filenames: Some(rolldown::ChunkFilenamesOutputOption::Fn(Arc::new(|chunk| {
        let name = format!("{}.js", chunk.name);
        Box::pin(async move { Ok(name) })
      }))),
      ..Default::default()
    })
    .await;
}