Skip to content

Commit eb8135e

Browse files
authored
feat: update Rsbuild 1.3.18 and set caller name (#974)
1 parent d3d8409 commit eb8135e

File tree

30 files changed

+175
-205
lines changed

30 files changed

+175
-205
lines changed

examples/module-federation/mf-host/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
},
1414
"devDependencies": {
1515
"@module-federation/rsbuild-plugin": "^0.13.1",
16-
"@rsbuild/core": "1.3.15",
17-
"@rsbuild/plugin-react": "^1.3.0",
16+
"@rsbuild/core": "1.3.18",
17+
"@rsbuild/plugin-react": "^1.3.1",
1818
"@types/react": "^19.1.3",
1919
"@types/react-dom": "^19.1.3",
2020
"typescript": "^5.8.3"

examples/module-federation/mf-react-component/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"@module-federation/enhanced": "^0.13.1",
2222
"@module-federation/rsbuild-plugin": "^0.13.1",
2323
"@module-federation/storybook-addon": "^4.0.15",
24-
"@rsbuild/plugin-react": "^1.3.0",
24+
"@rsbuild/plugin-react": "^1.3.1",
2525
"@rslib/core": "workspace:*",
2626
"@types/react": "^19.1.3",
2727
"http-server": "^14.1.1",

examples/module-federation/mf-remote/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
},
1414
"devDependencies": {
1515
"@module-federation/rsbuild-plugin": "^0.13.1",
16-
"@rsbuild/core": "1.3.15",
17-
"@rsbuild/plugin-react": "^1.3.0",
16+
"@rsbuild/core": "1.3.18",
17+
"@rsbuild/plugin-react": "^1.3.1",
1818
"@types/react": "^19.1.3",
1919
"@types/react-dom": "^19.1.3",
2020
"typescript": "^5.8.3"

examples/react-component-bundle-false/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"build": "rslib build"
99
},
1010
"devDependencies": {
11-
"@rsbuild/plugin-react": "^1.3.0",
11+
"@rsbuild/plugin-react": "^1.3.1",
1212
"@rsbuild/plugin-sass": "^1.3.1",
1313
"@rslib/core": "workspace:*",
1414
"@types/react": "^19.1.3",

examples/react-component-bundle/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"build": "rslib build"
99
},
1010
"devDependencies": {
11-
"@rsbuild/plugin-react": "^1.3.0",
11+
"@rsbuild/plugin-react": "^1.3.1",
1212
"@rsbuild/plugin-sass": "^1.3.1",
1313
"@rslib/core": "workspace:*",
1414
"@types/react": "^19.1.3",

examples/react-component-umd/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"build": "rslib build"
88
},
99
"devDependencies": {
10-
"@rsbuild/plugin-react": "^1.3.0",
10+
"@rsbuild/plugin-react": "^1.3.1",
1111
"@rsbuild/plugin-sass": "^1.3.1",
1212
"@rslib/core": "workspace:*",
1313
"@types/react": "^19.1.3",

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"type-check": "tsc --noEmit && tsc --noEmit -p tests"
4343
},
4444
"dependencies": {
45-
"@rsbuild/core": "1.3.15",
45+
"@rsbuild/core": "1.3.18",
4646
"rsbuild-plugin-dts": "workspace:*",
4747
"tinyglobby": "^0.2.13"
4848
},

packages/core/src/cli/build.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ export async function build(
1010
): Promise<RsbuildInstance> {
1111
const { environments } = await composeRsbuildEnvironments(config);
1212
const rsbuildInstance = await createRsbuild({
13+
callerName: 'rslib',
1314
rsbuildConfig: {
1415
mode: 'production',
1516
root: config.root,

packages/core/src/cli/inspect.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ export async function inspect(
99
): Promise<RsbuildInstance> {
1010
const { environments } = await composeRsbuildEnvironments(config);
1111
const rsbuildInstance = await createRsbuild({
12+
callerName: 'rslib',
1213
rsbuildConfig: {
1314
mode: 'production',
1415
root: config.root,

packages/core/src/cli/mf.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ async function initMFRsbuild(
4646
);
4747

4848
const rsbuildInstance = await createRsbuild({
49+
callerName: 'rslib',
4950
rsbuildConfig: {
5051
mode: 'development',
5152
root: config.root,

0 commit comments

Comments
 (0)