Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: add chunks and cacheGroupKey to cacheGroups' name #6428

Merged
merged 6 commits into from
Jun 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions crates/node_binding/binding.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -726,6 +726,8 @@ export interface RawCacheOptions {

export interface RawChunkOptionNameCtx {
module: JsModule
chunks: Array<JsChunk>
cacheGroupKey: string
}

export interface RawConsumeOptions {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ use std::sync::Arc;

use napi::bindgen_prelude::Either3;
use napi_derive::napi;
use rspack_binding_values::{JsModule, ToJsModule};
use rspack_binding_values::{JsChunk, JsModule, ToJsModule};
use rspack_core::Chunk;
use rspack_napi::threadsafe_function::ThreadsafeFunction;
use rspack_plugin_split_chunks::{ChunkNameGetter, ChunkNameGetterFnCtx};
use tokio::runtime::Handle;
Expand All @@ -18,6 +19,8 @@ pub(super) fn default_chunk_option_name() -> ChunkNameGetter {
#[napi(object)]
pub struct RawChunkOptionNameCtx {
pub module: JsModule,
pub chunks: Vec<JsChunk>,
pub cache_group_key: String,
}

impl<'a> From<ChunkNameGetterFnCtx<'a>> for RawChunkOptionNameCtx {
Expand All @@ -27,6 +30,12 @@ impl<'a> From<ChunkNameGetterFnCtx<'a>> for RawChunkOptionNameCtx {
.module
.to_js_module()
.expect("should convert js success"),
chunks: value
.chunks
.iter()
.map(|chunk: &&Chunk| JsChunk::from(chunk))
.collect(),
cache_group_key: value.cache_group_key.to_string(),
}
}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
use std::sync::Arc;

use rspack_core::Module;
use rspack_core::{Chunk, Module};
use rspack_error::Result;

pub struct ChunkNameGetterFnCtx<'a> {
pub module: &'a dyn Module,
pub chunks: &'a Vec<&'a Chunk>,
pub cache_group_key: &'a str,
}

type ChunkNameGetterFn =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ impl SplitChunksPlugin {
ChunkNameGetter::String(name) => Some(name.to_string()),
ChunkNameGetter::Disabled => None,
ChunkNameGetter::Fn(f) => {
let ctx = ChunkNameGetterFnCtx { module };
let ctx = ChunkNameGetterFnCtx { module, chunks: &selected_chunks, cache_group_key: &cache_group.key };
f(ctx)?
}
};
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
it("should run", () => {
process.env.NODE_ENV;
});
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
/** @type {import("@rspack/core").Configuration} */
module.exports = {
entry: {
main: "./index"
},
output: {
filename: "[name].js"
},
optimization: {
splitChunks: {
chunks: "all",
minSize: 0,
cacheGroups: {
foo: {
test: /\.js/,
name(module, chunks, cacheGroupKey) {
expect(chunks.length).toBeGreaterThan(0);
expect(cacheGroupKey).toBe("foo");
}
}
}
}
}
};
6 changes: 5 additions & 1 deletion packages/rspack/src/builtin-plugin/SplitChunksPlugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ function toRawSplitChunksOptions(
function getName(name: any) {
interface Context {
module: JsModule;
chunks: JsChunk[];
cacheGroupKey: string;
}

if (typeof name === "function") {
Expand All @@ -48,7 +50,9 @@ function toRawSplitChunksOptions(
return name(undefined);
} else {
return name(
Module.__from_binding(ctx.module, compiler._lastCompilation)
Module.__from_binding(ctx.module, compiler._lastCompilation),
getChunks(ctx.chunks),
ctx.cacheGroupKey
);
}
};
Expand Down
Loading