maudit_rolldown_plugin 0.1.0

Fork of Rolldown for the Maudit project until Rolldown is published on crates.io
1
2
3
4
5
6
7
8
9
10
#[derive(Debug, PartialEq, Eq)]
pub enum PluginOrder {
  Pre,
  Post,
}

#[derive(Debug)]
pub struct PluginHookMeta {
  pub order: Option<PluginOrder>,
}