Skip to main content

rspack_plugin_split_chunks/
lib.rs

1mod common;
2mod module_group;
3mod options;
4mod plugin;
5
6pub use common::{
7  ChunkFilter, FallbackCacheGroup, ModuleLayerFilter, ModuleTypeFilter, SplitChunkSizes,
8  create_all_chunk_filter, create_async_chunk_filter, create_chunk_filter_from_str,
9  create_default_module_layer_filter, create_default_module_type_filter,
10  create_initial_chunk_filter, create_regex_chunk_filter_from_str,
11};
12pub use options::{
13  cache_group::CacheGroup,
14  cache_group_test::{CacheGroupTest, CacheGroupTestFnCtx},
15  chunk_name::{ChunkNameGetter, ChunkNameGetterFnCtx},
16};
17pub use plugin::{PluginOptions, SplitChunksPlugin};