File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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" ,
Original file line number Diff line number Diff 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 ( '.' , '-' ) } ` ;
You can’t perform that action at this time.
0 commit comments