Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit3a7bcc8

Browse files
committed
release: rspack@7.0.20,utils@7.0.9,vite@7.0.10,webpack@7.0.12
1 parentb5e4d12 commit3a7bcc8

File tree

10 files changed

+42
-6
lines changed

10 files changed

+42
-6
lines changed

‎packages/rspack/CHANGELOG.md‎

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
##[7.0.20](https://github.com/zhangyuang/ssr/compare/rspack@7.0.19...rspack@7.0.20) (2025-08-17)
2+
3+
4+
###Bug Fixes
5+
6+
* collect Page chunk modules in entry file ([b5e4d12](https://github.com/zhangyuang/ssr/commit/b5e4d128b7c2d4032e26a18a9e084e07539f5d20))
7+
8+
9+
110
##[7.0.19](https://github.com/zhangyuang/ssr/compare/rspack@7.0.18...rspack@7.0.19) (2025-08-17)
211

312

‎packages/rspack/package.json‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name":"ssr-rspack",
3-
"version":"7.0.19",
3+
"version":"7.0.20",
44
"description":"rspack config for serverless ssr",
55
"main":"./cjs/index.js",
66
"module":"./esm/index.js",

‎packages/rspack/src/utils/split-chunk.ts‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export class splitChunkPlugin {
4242
:incomings
4343
.map((c)=>{
4444
const{ query, path}=(c.originModuleasNormalModule)?.resourceResolveData??{}
45-
if(path?.includes('ssr-plugin')||path?.includes('packages/plugin')){
45+
if(path?.includes('client-entry')){
4646
return'Page'
4747
}
4848
returnquery?.includes('chunkName') ?chunkNameRe.exec(query??'')?.[1] :dependenciesMap[path??'']

‎packages/utils/CHANGELOG.md‎

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
##[7.0.9](https://github.com/zhangyuang/ssr/compare/utils@7.0.8...utils@7.0.9) (2025-08-17)
2+
3+
4+
###Bug Fixes
5+
6+
* collect Page chunk modules in entry file ([b5e4d12](https://github.com/zhangyuang/ssr/commit/b5e4d128b7c2d4032e26a18a9e084e07539f5d20))
7+
8+
9+
110
##[7.0.8](https://github.com/zhangyuang/ssr/compare/utils@7.0.7...utils@7.0.8) (2025-08-17)
211

312

‎packages/utils/package.json‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name":"ssr-common-utils",
3-
"version":"7.0.8",
3+
"version":"7.0.9",
44
"description":"utils for serverless ssr",
55
"types":"./esm/types.d.ts",
66
"main":"./cjs/server/index.js",

‎packages/vite/CHANGELOG.md‎

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
##[7.0.10](https://github.com/zhangyuang/ssr/compare/vite@7.0.9...vite@7.0.10) (2025-08-17)
2+
3+
4+
###Bug Fixes
5+
6+
* collect Page chunk modules in entry file ([b5e4d12](https://github.com/zhangyuang/ssr/commit/b5e4d128b7c2d4032e26a18a9e084e07539f5d20))
7+
8+
9+
110
##[7.0.9](https://github.com/zhangyuang/ssr/compare/vite@7.0.8...vite@7.0.9) (2025-08-17)
211

312

‎packages/vite/package.json‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name":"ssr-vite",
3-
"version":"7.0.9",
3+
"version":"7.0.10",
44
"description":"vite config for serverless ssr",
55
"main":"./cjs/index.js",
66
"module":"./esm/index.js",

‎packages/webpack/CHANGELOG.md‎

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
##[7.0.12](https://github.com/zhangyuang/ssr/compare/webpack@7.0.11...webpack@7.0.12) (2025-08-17)
2+
3+
4+
###Bug Fixes
5+
6+
* collect Page chunk modules in entry file ([b5e4d12](https://github.com/zhangyuang/ssr/commit/b5e4d128b7c2d4032e26a18a9e084e07539f5d20))
7+
8+
9+
110
##[7.0.11](https://github.com/zhangyuang/ssr/compare/webpack@7.0.10...webpack@7.0.11) (2025-08-17)
211

312

‎packages/webpack/package.json‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name":"ssr-webpack",
3-
"version":"7.0.11",
3+
"version":"7.0.12",
44
"description":"webpack config for serverless ssr",
55
"main":"./cjs/index.js",
66
"module":"./esm/index.js",

‎packages/webpack/src/utils/split-chunk.ts‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export class splitChunkPlugin {
4141
?[chunkNameRe.exec(normalModule.resource??'')?.[1]]
4242
:incomings
4343
.map((c)=>{
44-
if(c.resource?.includes('ssr-plugin')||c.resource?.includes('packages/plugin')){
44+
if(c.resource?.includes('client-entry')){
4545
return'Page'
4646
}
4747
returnc.resource?.includes('chunkName')

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp