rolldown_common 0.1.0

This crate is mostly for sharing code between rolldwon crates.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use std::path::PathBuf;

use arcstr::ArcStr;

use crate::PreliminaryFilename;

#[derive(Debug)]
pub struct CssAssetMeta {
  pub filename: ArcStr,
  pub debug_id: u128,
  pub file_dir: PathBuf,
  pub preliminary_filename: PreliminaryFilename,
}