Skip to content

Commit 5f0ae74

Browse files
authored
docs: sunset comparisons page (#1858)
resolve #1852 vitejs/vite@29ca40b の反映です。
1 parent 488007e commit 5f0ae74

File tree

5 files changed

+9
-28
lines changed

5 files changed

+9
-28
lines changed

.vitepress/config.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -289,10 +289,6 @@ export default defineConfig({
289289
text: 'バックエンドとの統合',
290290
link: '/guide/backend-integration',
291291
},
292-
{
293-
text: '他のツールとの比較',
294-
link: '/guide/comparisons',
295-
},
296292
{
297293
text: 'トラブルシューティング',
298294
link: '/guide/troubleshooting',

blog/announcing-vite2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Vite (French word for "fast", pronounced `/vit/`) is a new kind of build tool fo
3333

3434
To get a sense of how fast Vite is, check out [this video comparison](https://twitter.com/amasad/status/1355379680275128321) of booting up a React application on Repl.it using Vite vs. `create-react-app` (CRA).
3535

36-
If you've never heard of Vite before and would love to learn more about it, check out [the rationale behind the project](https://vite.dev/guide/why.html). If you are interested in how Vite differs from other similar tools, check out the [comparisons](https://vite.dev/guide/comparisons.html).
36+
If you've never heard of Vite before and would love to learn more about it, check out [the rationale behind the project](https://vite.dev/guide/why.html). If you are interested in how Vite differs from other similar tools, check out the [comparisons](https://v5.vite.dev/guide/comparisons.html).
3737

3838
## What's New in 2.0
3939

guide/comparisons.md

Lines changed: 0 additions & 21 deletions
This file was deleted.

guide/why.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,10 @@ Vite の現在のプラグイン API は、`esbuild` をバンドラーとして
5757

5858
Rollup はパフォーマンスの向上にも取り組んでおり、[v4 でパーサーを SWC に切り替えました](https://github.com/rollup/rollup/pull/5073)。 そして、Rolldown と呼ばれる Rollup の Rust ポートを構築する取り組みが進行中です。 Rolldown の準備が完了すると、Vite の Rollup と esbuild の両方が置き換えられ、ビルドのパフォーマンスが大幅に向上し、開発とビルドの間の不一致が解消されます。 [詳細については、Evan You の ViteConf 2023 基調講演](https://youtu.be/hrdwQHoAp0M) をご覧ください。
5959

60-
## Vite とその他 X はどう違いますか
60+
## Vite は他の非バンドルのビルドツールとどう違いますか
6161

62-
Vite がその他の類似ツールとどう違うのか、より詳細な違いは、[比較](./comparisons.md) セクションで確認してください。
62+
Preact チームが開発した [WMR](https://github.com/preactjs/wmr) も似たような機能群を提供しようとしていました。Vite の開発用およびビルド用のユニバーサルな Rollup プラグインの API は、これに影響を受けました。 WMR はもうメンテナンスされていません。Preact チームは現在、[@preactjs/preset-vite](https://github.com/preactjs/preset-vite) とともに Vite を使用することを推奨しています。
63+
64+
[Snowpack](https://www.snowpack.dev/) も no-bundle ネイティブな ESM の開発サーバーで、Vite と非常に近い目的を持っていました。Vite の依存関係の事前ビルドの機能は、Snowpack v1(現在の[`esinstall`](https://github.com/snowpackjs/snowpack/tree/main/esinstall))にも影響を受けています。Snowpack は今ではメンテナンスされていません。現在、Snowpack チームは Vite を利用した静的サイトビルダーである [Astro](https://astro.build/) の開発に取り組んでいます。
65+
66+
[@web/dev-server](https://modern-web.dev/docs/dev-server/overview/)(旧称 `es-dev-server`)は素晴らしいプロジェクトです。Vite 1.0 の Koa ベースのサーバーのセットアップはこのプロジェクトに影響を受けたものです。`@web` アンブレラプロジェクトは活発にメンテナンスされており、Vite ユーザーにも役に立つ他の多くの優れたツールが含まれています。

public/_redirects

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,5 @@ https://ja.vitejs.dev/* https://ja.vite.dev/:splat 301!
55
/guide/api-vite-runtime.html /guide/api-environment 302
66
/guide/api-vite-environment /guide/api-environment 302
77
/guide/api-vite-environment.html /guide/api-environment 302
8+
/guide/comparisons /guide/why#how-vite-relates-to-other-unbundled-build-tools 302
9+
/guide/comparisons.html /guide/why#how-vite-relates-to-other-unbundled-build-tools 302

0 commit comments

Comments
 (0)