Skip to content

Commit 7e142c3

Browse files
committed
chore: bump rolldown
1 parent c2f3fbb commit 7e142c3

File tree

4 files changed

+68
-54
lines changed

4 files changed

+68
-54
lines changed

packages/vite/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
"dependencies": {
8989
"esbuild": "^0.24.0",
9090
"postcss": "^8.4.48",
91-
"rolldown": "https://pkg.pr.new/rolldown@dee08ac",
91+
"rolldown": "https://pkg.pr.new/rolldown@72ed6ce",
9292
"rollup": "^4.23.0"
9393
},
9494
"devDependencies": {

playground/css-codesplit/vite.config.js

+7
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,13 @@ export default defineConfig({
1212
'shared-css-with-js': resolve(__dirname, 'shared-css-with-js.html'),
1313
'shared-css-no-js': resolve(__dirname, 'shared-css-no-js.html'),
1414
},
15+
experimental: {
16+
// set this to keep the previous chunking behavior to make tests pass easier
17+
// as some tests relies on the chunking behavior
18+
// (using advancedChunks enable this)
19+
// related: https://github.com/vitejs/vite/pull/18652
20+
strictExecutionOrder: false,
21+
},
1522
output: {
1623
// manualChunks(id) {
1724
// // make `chunk.css` it's own chunk for easier testing of pure css chunks

playground/js-sourcemap/vite.config.js

+7
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,13 @@ export default defineConfig({
1010
build: {
1111
sourcemap: true,
1212
rollupOptions: {
13+
experimental: {
14+
// set this to keep the previous chunking behavior to make tests pass easier
15+
// as some tests relies on the chunking behavior
16+
// (using advancedChunks enable this)
17+
// related: https://github.com/vitejs/vite/pull/18652
18+
strictExecutionOrder: false,
19+
},
1320
output: {
1421
// manualChunks(name) {
1522
// if (name.endsWith('after-preload-dynamic.js')) {

pnpm-lock.yaml

+53-53
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)