Skip to content

Commit 43358e9

Browse files
authored
feat: update rolldown to 1.0.0-rc.3 (#21554)
1 parent d8a6b3d commit 43358e9

6 files changed

Lines changed: 196 additions & 184 deletions

File tree

docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"@voidzero-dev/vitepress-theme": "^4.4.1",
1414
"feed": "^5.2.0",
1515
"markdown-it-image-size": "^15.0.1",
16-
"oxc-minify": "^0.111.0",
16+
"oxc-minify": "^0.112.0",
1717
"vitepress": "^2.0.0-alpha.15",
1818
"vitepress-plugin-group-icons": "^1.7.1",
1919
"vitepress-plugin-llms": "^1.10.0",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
"picocolors": "^1.1.1",
6565
"playwright-chromium": "^1.58.1",
6666
"prettier": "3.8.1",
67-
"rolldown": "1.0.0-rc.2",
67+
"rolldown": "1.0.0-rc.3",
6868
"rollup": "^4.43.0",
6969
"simple-git-hooks": "^2.13.1",
7070
"tsx": "^4.21.0",

packages/vite/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -73,12 +73,12 @@
7373
},
7474
"//": "READ CONTRIBUTING.md to understand what to put under deps vs. devDeps!",
7575
"dependencies": {
76-
"@oxc-project/runtime": "0.111.0",
76+
"@oxc-project/runtime": "0.112.0",
7777
"fdir": "^6.5.0",
7878
"lightningcss": "^1.31.1",
7979
"picomatch": "^4.0.3",
8080
"postcss": "^8.5.6",
81-
"rolldown": "1.0.0-rc.2",
81+
"rolldown": "1.0.0-rc.3",
8282
"tinyglobby": "^0.2.15"
8383
},
8484
"optionalDependencies": {
@@ -88,9 +88,9 @@
8888
"@babel/parser": "^7.29.0",
8989
"@jridgewell/remapping": "^2.3.5",
9090
"@jridgewell/trace-mapping": "^0.3.31",
91-
"@oxc-project/types": "0.111.0",
91+
"@oxc-project/types": "0.112.0",
9292
"@polka/compression": "^1.0.0-next.25",
93-
"@rolldown/pluginutils": "1.0.0-rc.2",
93+
"@rolldown/pluginutils": "1.0.0-rc.3",
9494
"@rollup/plugin-alias": "^5.1.1",
9595
"@rollup/plugin-commonjs": "^29.0.0",
9696
"@rollup/plugin-dynamic-import-vars": "2.1.4",
@@ -131,7 +131,7 @@
131131
"postcss-modules": "^6.0.1",
132132
"premove": "^4.0.0",
133133
"resolve.exports": "^2.0.3",
134-
"rolldown-plugin-dts": "^0.21.8",
134+
"rolldown-plugin-dts": "^0.21.9",
135135
"rollup": "^4.43.0",
136136
"rollup-plugin-license": "^3.6.0",
137137
"sass": "^1.97.3",

packages/vite/src/node/__tests__/plugins/index.spec.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import { RUNTIME_MODULE_ID } from 'rolldown'
2+
import { exactRegex } from '@rolldown/pluginutils'
13
import { afterAll, describe, expect, test, vi } from 'vitest'
24
import { type InlineConfig, type Plugin, build, createServer } from '../..'
35

@@ -105,7 +107,12 @@ describe('hook filter with build', async () => {
105107
handler: load,
106108
},
107109
transform: {
108-
filter: { id: '**/*.js' },
110+
filter: {
111+
id: {
112+
include: '**/*.js',
113+
exclude: exactRegex(RUNTIME_MODULE_ID),
114+
},
115+
},
109116
handler: transformWithId,
110117
},
111118
},

playground/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
"convert-source-map": "^2.0.0",
1111
"css-color-names": "^1.0.1",
1212
"kill-port": "^1.6.1",
13-
"rolldown": "1.0.0-rc.2"
13+
"rolldown": "1.0.0-rc.3"
1414
}
1515
}

0 commit comments

Comments
 (0)