Skip to content

Commit 7f76263

Browse files
authored
rolldown@1.0.0-beta.4 (#3732)
1 parent 585d32c commit 7f76263

2 files changed

Lines changed: 3 additions & 6 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
"react-dnd": "^16.0.1",
9696
"react-dnd-html5-backend": "^16.0.1",
9797
"react-dom": "^19.0.0",
98-
"rolldown": "^1.0.0-beta.3",
98+
"rolldown": "^1.0.0-beta.4",
9999
"typescript": "~5.8.2",
100100
"vite": "^6.1.0",
101101
"vitest": "^3.0.6",

rolldown.config.js

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,12 @@ export default defineConfig({
1313
sourcemap: true
1414
},
1515
platform: 'browser',
16-
external: (/** @type {string} */ id) => !id.startsWith('.') && !isAbsolute(id),
16+
external: (id) => !id.startsWith('.') && !isAbsolute(id),
1717
plugins: [
1818
// @ts-expect-error
1919
wyw({
2020
preprocessor: 'none',
21-
/**
22-
* @param {string} hash
23-
*/
24-
classNameSlug(hash) {
21+
classNameSlug(/** @type {string} */ hash) {
2522
// We add the package version as suffix to avoid style conflicts
2623
// between multiple versions of RDG on the same page.
2724
return `${hash}${pkg.version.replaceAll('.', '-')}`;

0 commit comments

Comments
 (0)