Skip to content

Commit c64d19b

Browse files
committedApr 9, 2025··
feat: rolldown is out of experimental now
1 parent 075508d commit c64d19b

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed
 

Diff for: ‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Currently supports:
1313
- [Webpack](https://webpack.js.org/)
1414
- [esbuild](https://esbuild.github.io/)
1515
- [Rspack](https://www.rspack.dev/)
16-
- [Rolldown](https://rolldown.rs/) (⚠️ experimental)
16+
- [Rolldown](https://rolldown.rs/)
1717
- [Farm](https://www.farmfe.org/)
1818
- And every framework built on top of them.
1919

Diff for: ‎docs/guide/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ lastUpdated: false
1616
- [webpack](https://webpack.js.org/)
1717
- [esbuild](https://esbuild.github.io/)
1818
- [Rspack](https://www.rspack.dev/)
19-
- [Rolldown](https://rolldown.rs/) <span style="color: #ca8a04"><strong>(⚠️ experimental)</strong></span>
19+
- [Rolldown](https://rolldown.rs/)
2020
- [Farm](https://www.farmfe.org/)
2121

2222
## Trying It Online

Diff for: ‎src/define.ts

-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ export function createUnplugin<UserOptions, Nested extends boolean = boolean>(
2121
get vite() {
2222
return getVitePlugin(factory)
2323
},
24-
/** @experimental do not use it in production */
2524
get rolldown() {
2625
return getRolldownPlugin(factory)
2726
},
@@ -61,7 +60,6 @@ export function createVitePlugin<UserOptions, Nested extends boolean = boolean>(
6160
return getVitePlugin(factory)
6261
}
6362

64-
/** @experimental do not use it in production */
6563
export function createRolldownPlugin<UserOptions, Nested extends boolean = boolean>(
6664
factory: UnpluginFactory<UserOptions, Nested>,
6765
): UnpluginInstance<UserOptions>['rolldown'] {

0 commit comments

Comments
 (0)
Please sign in to comment.