rspack_plugin_split_chunks 0.7.10

rspack split chunks plugin
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod common;
mod module_group;
mod options;
mod plugin;

pub use common::{
  ChunkFilter, FallbackCacheGroup, ModuleLayerFilter, ModuleTypeFilter, SplitChunkSizes,
  create_all_chunk_filter, create_async_chunk_filter, create_chunk_filter_from_str,
  create_default_module_layer_filter, create_default_module_type_filter,
  create_initial_chunk_filter, create_regex_chunk_filter_from_str,
};
pub use options::{
  cache_group::CacheGroup,
  cache_group_test::{CacheGroupTest, CacheGroupTestFnCtx},
  chunk_name::{ChunkNameGetter, ChunkNameGetterFnCtx},
};
pub use plugin::{PluginOptions, SplitChunksPlugin};