rspack_core 0.100.1

rspack core
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use rspack_error::Result;

use crate::{Compilation, SharedPluginDriver};

pub async fn make_hook_pass(
  compilation: &mut Compilation,
  plugin_driver: SharedPluginDriver,
) -> Result<()> {
  plugin_driver.compiler_hooks.make.call(compilation).await?;

  Ok(())
}