Skip to content

Commit 6a499b3

Browse files
fix(deps): update dependency @rsbuild/core to v1.6.14 (main) (#8006)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: wangyiming <[email protected]>
1 parent 16d5e9f commit 6a499b3

File tree

9 files changed

+330
-191
lines changed

9 files changed

+330
-191
lines changed

packages/cli/builder/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"dependencies": {
3131
"@modern-js/flight-server-transform-plugin": "workspace:*",
3232
"@modern-js/utils": "workspace:*",
33-
"@rsbuild/core": "1.6.13",
33+
"@rsbuild/core": "1.6.14",
3434
"@rsbuild/plugin-assets-retry": "1.5.0",
3535
"@rsbuild/plugin-babel": "1.0.6",
3636
"@rsbuild/plugin-check-syntax": "1.6.0",

packages/cli/builder/src/rsc/plugins/rspack-rsc-client-plugin.ts

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -204,9 +204,15 @@ export class RspackRscClientPlugin {
204204
compilation.hooks.additionalTreeRuntimeRequirements.tap(
205205
RspackRscClientPlugin.name,
206206
(_chunk, runtimeRequirements) => {
207-
runtimeRequirements.add(RuntimeGlobals.ensureChunkHandlers);
208-
runtimeRequirements.add(RuntimeGlobals.ensureChunk);
209-
runtimeRequirements.add(RuntimeGlobals.compatGetDefaultExport);
207+
runtimeRequirements.add(
208+
RuntimeGlobals.ensureChunkHandlers as unknown as string,
209+
);
210+
runtimeRequirements.add(
211+
RuntimeGlobals.ensureChunk as unknown as string,
212+
);
213+
runtimeRequirements.add(
214+
RuntimeGlobals.compatGetDefaultExport as unknown as string,
215+
);
210216
},
211217
);
212218

packages/cli/plugin-bff/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@
119119
"@modern-js/plugin": "workspace:*",
120120
"@modern-js/runtime": "workspace:*",
121121
"@modern-js/types": "workspace:*",
122-
"@rsbuild/core": "1.6.13",
122+
"@rsbuild/core": "1.6.14",
123123
"@scripts/jest-config": "workspace:*",
124124
"@rslib/core": "0.18.3",
125125
"@modern-js/rslib": "workspace:*",

packages/cli/plugin-data-loader/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
"react-dom": "^19.2.1",
7474
"supertest": "^6.3.4",
7575
"typescript": "^5",
76-
"@rsbuild/core": "1.6.13"
76+
"@rsbuild/core": "1.6.14"
7777
},
7878
"peerDependencies": {
7979
"react": ">=17.0.0"

packages/runtime/plugin-runtime/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@
263263
"@modern-js/rslib": "workspace:*",
264264
"@modern-js/app-tools": "workspace:*",
265265
"@remix-run/web-fetch": "^4.1.3",
266-
"@rsbuild/core": "1.6.13",
266+
"@rsbuild/core": "1.6.14",
267267
"@scripts/jest-config": "workspace:*",
268268
"@testing-library/react": "^13.4.0",
269269
"@types/cookie": "0.6.0",

packages/solutions/app-tools/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@
122122
"@modern-js/types": "workspace:*",
123123
"@modern-js/builder": "workspace:*",
124124
"@modern-js/utils": "workspace:*",
125-
"@rsbuild/core": "1.6.13",
125+
"@rsbuild/core": "1.6.14",
126126
"@swc/helpers": "^0.5.17",
127127
"es-module-lexer": "^1.7.0",
128128
"esbuild": "0.25.5",

packages/toolkit/plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@
9494
"@modern-js/types": "workspace:*",
9595
"@swc/helpers": "^0.5.17",
9696
"jiti": "1.21.7",
97-
"@rsbuild/core": "1.6.13"
97+
"@rsbuild/core": "1.6.14"
9898
},
9999
"devDependencies": {
100100
"@modern-js/builder": "workspace:*",

pnpm-lock.yaml

Lines changed: 314 additions & 181 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/e2e/builder/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"@modern-js/builder": "workspace:*",
1717
"@modern-js/utils": "workspace:*",
1818
"@playwright/test": "1.57.0",
19-
"@rsbuild/core": "1.6.13",
19+
"@rsbuild/core": "1.6.14",
2020
"@types/connect": "^3.4.38",
2121
"@types/lodash": "^4.17.21",
2222
"@types/node": "^20",

0 commit comments

Comments
 (0)