rolldown 1.0.3

Fast JavaScript bundler in Rust, designed for the future of Vite
Documentation
1
2
3
4
5
6
7
8
9
10
use std::path::PathBuf;

use rolldown_testing::fixture::Fixture;
use testing_macros::fixture;

#[expect(clippy::needless_pass_by_value)]
#[fixture("./tests/rollup/**/_config.json")]
fn test(path: PathBuf) {
  Fixture::new(path.parent().unwrap()).run_integration_test();
}