rspack_loader_runner 0.102.1

rspack loader runner
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use rspack_cacheable::cacheable;

#[cacheable]
#[derive(Debug, Clone, Default, PartialEq, Eq)]
pub struct LoaderRunnerOptions {
  pub cache: bool,
  /// Loader name used as part of the cache key.
  pub loader_name: String,
  /// Stable serialization of the loader options used as part of the etag.
  pub options_cache_key: String,
  /// Loader implementation version or file hash used as part of the etag.
  pub loader_version: String,
}