You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/guide/getting-started.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
# Getting Started
2
2
3
3
:::warning 🚧 Beta Software
4
-
[Rolldown](https://rolldown.rs) is currently in beta status. While it can already handle most production use cases, there may still be bugs and rough edges. Most notably, the built-in minification feature is still a work in progress.
4
+
[Rolldown](https://rolldown.rs) is currently in beta status. While it can already handle most production use cases, there may still be bugs and rough edges.
Copy file name to clipboardExpand all lines: docs/options/minification.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,8 +8,8 @@ You can enable minification in `tsdown` using the `--minify` option:
8
8
tsdown --minify
9
9
```
10
10
11
-
> [!WARNING]
12
-
> The minification feature is currently **experimental**. While it can be used, it may not handle all edge cases perfectly. Use it with caution, and thoroughly test your output in production environments.
11
+
> [!NOTE]
12
+
> The minification feature is based on [Oxc](https://oxc.rs/docs/contribute/minifier), which is currently in alpha and can still have bugs. We recommend thoroughly testing your output in production environments.
Copy file name to clipboardExpand all lines: docs/options/target.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ The `target` setting determines which JavaScript and CSS features are downlevele
4
4
5
5
For example, an arrow function `() => this` will be transformed into an equivalent `function` expression if the target is `es5` or lower.
6
6
7
-
> [!WARNING] Syntax Downgrade Only
7
+
> [!WARNING] Syntax Downgrade Only
8
8
> The `target` option only affects syntax transformations. It does not include runtime polyfills or shims for APIs that may not exist in the target environment. For example, if your code uses `Promise`, it will not be polyfilled for environments that lack native `Promise` support.
-**`unplugin-vue`** compiles `.vue` single-file components into JavaScript and extracts CSS, making them ready for bundling.
34
34
-**`rolldown-plugin-dts`** (with `vue: true`) and **`vue-tsc`** work together to generate accurate TypeScript declaration files for your Vue components, ensuring consumers of your library get full type support.
35
35
36
-
> [!TIP]
36
+
> [!TIP]
37
37
> Set `platform: 'neutral'` to maximize compatibility for libraries that may be used in both browser and Node.js environments.
0 commit comments