From 399879c4cd0037be1e1e33850a8b9d03dd85474a Mon Sep 17 00:00:00 2001 From: Jun Shindo <46585162+jay-es@users.noreply.github.com> Date: Sat, 26 Jun 2021 23:22:47 +0900 Subject: [PATCH 1/4] apply vitejs/vite@de1ddd4 --- guide/api-hmr.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/guide/api-hmr.md b/guide/api-hmr.md index 1994d39..ec08a6c 100644 --- a/guide/api-hmr.md +++ b/guide/api-hmr.md @@ -112,4 +112,12 @@ if (import.meta.hot) { ## `hot.on(event, cb)` -カスタム HMR イベントをリッスンします。カスタム HMR イベントは、プラグインから送信できます。詳細は [handleHotUpdate](./api-plugin#handlehotupdate) を参照してください。 +Listen to an HMR event. + +The following HMR events are dispatched by Vite automatically: +- `'vite:beforeUpdate'` when an update is about to be applied (e.g. a module will be replaced) +- `'vite:beforeFullReload'` when a full reload is about to occur +- `'vite:beforePrune'` when modules that are no longer needed are about to be pruned +- `'vite:error'` when an error occurs (e.g. syntax error) + +Custom HMR events can also be sent from plugins. See [handleHotUpdate](./api-plugin#handlehotupdate) for more details. From b6bbbbdb129c6778419e4f3201106834466fd518 Mon Sep 17 00:00:00 2001 From: Jun Shindo <46585162+jay-es@users.noreply.github.com> Date: Sat, 26 Jun 2021 23:47:05 +0900 Subject: [PATCH 2/4] translate vitejs/vite@de1ddd4 into Japanese --- guide/api-hmr.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/guide/api-hmr.md b/guide/api-hmr.md index ec08a6c..5b48574 100644 --- a/guide/api-hmr.md +++ b/guide/api-hmr.md @@ -112,12 +112,12 @@ if (import.meta.hot) { ## `hot.on(event, cb)` -Listen to an HMR event. +HMR イベントをリッスンします。 -The following HMR events are dispatched by Vite automatically: -- `'vite:beforeUpdate'` when an update is about to be applied (e.g. a module will be replaced) -- `'vite:beforeFullReload'` when a full reload is about to occur -- `'vite:beforePrune'` when modules that are no longer needed are about to be pruned -- `'vite:error'` when an error occurs (e.g. syntax error) +以下の HMR イベントは Vite によって自動的にディスパッチされます: +- `'vite:beforeUpdate'` アップデートが適用される直前(例: モジュールが置き換えられるなど) +- `'vite:beforeFullReload'` フルリロードが発生する直前 +- `'vite:beforePrune'` もう必要なくなったモジュールが取り除かれる直前 +- `'vite:error'` エラーが発生したとき(例: 構文エラーなど) -Custom HMR events can also be sent from plugins. See [handleHotUpdate](./api-plugin#handlehotupdate) for more details. +カスタム HMR イベントは、プラグインから送信することもできます。詳細は [handleHotUpdate](./api-plugin#handlehotupdate) を参照してください。 From 0b3321566ecd712f9e634364db132dd6188bcc9c Mon Sep 17 00:00:00 2001 From: Jun Shindo <46585162+jay-es@users.noreply.github.com> Date: Tue, 29 Jun 2021 20:12:54 +0900 Subject: [PATCH 3/4] Update guide/api-hmr.md Co-authored-by: Naoki Endoh --- guide/api-hmr.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/api-hmr.md b/guide/api-hmr.md index 5b48574..1db32f5 100644 --- a/guide/api-hmr.md +++ b/guide/api-hmr.md @@ -112,7 +112,7 @@ if (import.meta.hot) { ## `hot.on(event, cb)` -HMR イベントをリッスンします。 +HMR イベントを購読します。 以下の HMR イベントは Vite によって自動的にディスパッチされます: - `'vite:beforeUpdate'` アップデートが適用される直前(例: モジュールが置き換えられるなど) From 8236f0ab3cd0d9c8e2dad98c3b1228df1d44499c Mon Sep 17 00:00:00 2001 From: Jun Shindo <46585162+jay-es@users.noreply.github.com> Date: Tue, 29 Jun 2021 22:18:35 +0900 Subject: [PATCH 4/4] Update guide/api-hmr.md Co-authored-by: Naoki Endoh --- guide/api-hmr.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/api-hmr.md b/guide/api-hmr.md index 1db32f5..31db0a5 100644 --- a/guide/api-hmr.md +++ b/guide/api-hmr.md @@ -116,7 +116,7 @@ HMR イベントを購読します。 以下の HMR イベントは Vite によって自動的にディスパッチされます: - `'vite:beforeUpdate'` アップデートが適用される直前(例: モジュールが置き換えられるなど) -- `'vite:beforeFullReload'` フルリロードが発生する直前 +- `'vite:beforeFullReload'` 完全なリロードが発生する直前 - `'vite:beforePrune'` もう必要なくなったモジュールが取り除かれる直前 - `'vite:error'` エラーが発生したとき(例: 構文エラーなど)