Skip to content

Commit 4d8614c

Browse files
fix(deps): update dependency @rsbuild/core to v1.3.22 (#7184)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: caohuilin <[email protected]>
1 parent aa40bda commit 4d8614c

File tree

13 files changed

+222
-222
lines changed

13 files changed

+222
-222
lines changed

packages/cli/plugin-swc/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
},
4040
"dependencies": {
4141
"@modern-js/utils": "workspace:*",
42-
"@rsbuild/core": "1.3.21",
42+
"@rsbuild/core": "1.3.22",
4343
"@rsbuild/plugin-webpack-swc": "1.1.1",
4444
"@swc/helpers": "^0.5.17"
4545
},

packages/cli/rsbuild-plugin-esbuild/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"webpack": "^5.99.8"
3232
},
3333
"devDependencies": {
34-
"@rsbuild/core": "1.3.21",
34+
"@rsbuild/core": "1.3.22",
3535
"@rsbuild/webpack": "1.3.2",
3636
"@scripts/build": "workspace:*",
3737
"typescript": "^5.4.2"

packages/cli/uni-builder/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"@modern-js/flight-server-transform-plugin": "workspace:*",
4040
"@modern-js/utils": "workspace:*",
4141
"@pmmmwh/react-refresh-webpack-plugin": "0.5.16",
42-
"@rsbuild/core": "1.3.21",
42+
"@rsbuild/core": "1.3.22",
4343
"@rsbuild/plugin-assets-retry": "1.2.1",
4444
"@rsbuild/plugin-babel": "1.0.5",
4545
"@rsbuild/plugin-check-syntax": "1.3.0",

packages/devtools/client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"@radix-ui/react-tabs": "^1.1.12",
4040
"@radix-ui/react-toast": "^1.2.14",
4141
"@radix-ui/themes": "^3.2.1",
42-
"@rsbuild/core": "1.3.21",
42+
"@rsbuild/core": "1.3.22",
4343
"@scripts/jest-config": "workspace:*",
4444
"@types/jest": "^29",
4545
"@types/lodash": "^4.14.202",

packages/devtools/plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
"@modern-js/server-core": "workspace:*",
7676
"@modern-js/types": "workspace:*",
7777
"@modern-js/uni-builder": "workspace:*",
78-
"@rsbuild/core": "1.3.21",
78+
"@rsbuild/core": "1.3.22",
7979
"@scripts/build": "workspace:*",
8080
"@swc/helpers": "^0.5.17",
8181
"@types/node": "^14",

packages/runtime/plugin-runtime/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@
234234
"devDependencies": {
235235
"@modern-js/app-tools": "workspace:*",
236236
"@remix-run/web-fetch": "^4.1.3",
237-
"@rsbuild/core": "1.3.21",
237+
"@rsbuild/core": "1.3.22",
238238
"@scripts/build": "workspace:*",
239239
"@scripts/jest-config": "workspace:*",
240240
"@testing-library/react": "^13.4.0",

packages/solutions/app-tools/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@
101101
"@modern-js/types": "workspace:*",
102102
"@modern-js/uni-builder": "workspace:*",
103103
"@modern-js/utils": "workspace:*",
104-
"@rsbuild/core": "1.3.21",
104+
"@rsbuild/core": "1.3.22",
105105
"@rsbuild/plugin-node-polyfill": "1.3.0",
106106
"@swc/helpers": "^0.5.17",
107107
"es-module-lexer": "^1.1.0",

packages/solutions/app-tools/src/builder/shared/bundlerPlugins/RouterPlugin.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ export class RouterPlugin {
323323
placeholder,
324324
`<script ${nonceAttr}>${injectedContent}</script>`,
325325
),
326-
),
326+
) as any,
327327
// FIXME: The arguments third of updatgeAsset is a optional function in webpack.
328328
undefined as any,
329329
);
@@ -349,13 +349,13 @@ export class RouterPlugin {
349349
htmlName,
350350
new RawSource(
351351
oldHtml.source().toString().replace(placeholder, script),
352-
),
352+
) as any,
353353
// FIXME: The arguments third of updatgeAsset is a optional function in webpack.
354354
undefined as any,
355355
);
356356
compilation.emitAsset(
357357
scriptPath,
358-
new RawSource(injectedContent),
358+
new RawSource(injectedContent) as any,
359359
);
360360
}
361361
}
@@ -364,14 +364,14 @@ export class RouterPlugin {
364364
if (prevManifestAsset) {
365365
compilation.updateAsset(
366366
ROUTE_MANIFEST_FILE,
367-
new RawSource(JSON.stringify(manifest, null, 2)),
367+
new RawSource(JSON.stringify(manifest, null, 2)) as any,
368368
// FIXME: The arguments third of updatgeAsset is a optional function in webpack.
369369
undefined as any,
370370
);
371371
} else {
372372
compilation.emitAsset(
373373
ROUTE_MANIFEST_FILE,
374-
new RawSource(JSON.stringify(manifest, null, 2)),
374+
new RawSource(JSON.stringify(manifest, null, 2)) as any,
375375
);
376376
}
377377
},

packages/solutions/module-tools/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191
},
9292
"devDependencies": {
9393
"@modern-js/self": "workspace:@modern-js/module-tools@*",
94-
"@rsbuild/core": "1.3.21",
94+
"@rsbuild/core": "1.3.22",
9595
"@scripts/build": "workspace:*",
9696
"@scripts/vitest-config": "workspace:*",
9797
"@types/convert-source-map": "1.5.2",

packages/storybook/builder/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
"@modern-js/runtime": "workspace:*",
6262
"@modern-js/uni-builder": "workspace:*",
6363
"@modern-js/utils": "workspace:*",
64-
"@rsbuild/core": "1.3.21",
64+
"@rsbuild/core": "1.3.22",
6565
"@storybook/components": "~7.6.12",
6666
"@storybook/core-common": "~7.6.12",
6767
"@storybook/csf-plugin": "~7.6.12",

0 commit comments

Comments
 (0)