rolldown_common 1.2.0

This crate is mostly for sharing code between rolldwon crates.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use arcstr::ArcStr;

#[derive(Debug)]
pub struct HmrLazyChunkOutput {
  pub code: String,
  pub filename: String,
  /// `(stable id, render-time stamp)` for every module this chunk carries — the
  /// pending-payload entry that the delivery-time ship-map write consumes when the
  /// serving middleware observes the response complete.
  pub carried: Vec<(ArcStr, u32)>,
}