Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: honojs/vite-plugins
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: @hono/vite-dev-server@0.18.3
Choose a base ref
...
head repository: honojs/vite-plugins
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: @hono/vite-dev-server@0.19.0
Choose a head ref
  • 2 commits
  • 4 files changed
  • 3 contributors

Commits on Feb 28, 2025

  1. feat(dev-server): add handleHotUpdate option (#235)

    * feat(dev-server): add `handleHotUpdate` option
    
    * add changeset
    yusukebe authored Feb 28, 2025
    Copy the full SHA
    367d2b0 View commit details
  2. Version Packages (#236)

    Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
    github-actions[bot] and github-actions[bot] authored Feb 28, 2025
    Copy the full SHA
    8d7bdb0 View commit details
Showing with 26 additions and 10 deletions.
  1. +6 −0 packages/dev-server/CHANGELOG.md
  2. +8 −0 packages/dev-server/README.md
  3. +1 −1 packages/dev-server/package.json
  4. +11 −9 packages/dev-server/src/dev-server.ts
6 changes: 6 additions & 0 deletions packages/dev-server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @hono/vite-dev-server

## 0.19.0

### Minor Changes

- [#235](https://github.com/honojs/vite-plugins/pull/235) [`367d2b088c14c29ae12701ab702305209b1959ce`](https://github.com/honojs/vite-plugins/commit/367d2b088c14c29ae12701ab702305209b1959ce) Thanks [@yusukebe](https://github.com/yusukebe)! - feat: add `handleHotUpdate` option

## 0.18.3

### Patch Changes
8 changes: 8 additions & 0 deletions packages/dev-server/README.md
Original file line number Diff line number Diff line change
@@ -107,6 +107,7 @@ export type DevServerOptions = {
env?: Env
onServerClose?: () => Promise<void>
}
handleHotUpdate?: VitePlugin['handleHotUpdate']
}
```
@@ -127,6 +128,13 @@ export const defaultOptions: Required<Omit<DevServerOptions, 'cf'>> = {
/^\/node_modules\/.*/,
],
ignoreWatching: [/\.wrangler/],
handleHotUpdate: ({ server, modules }) => {
const isSSR = modules.some((mod) => mod._ssrModule)
if (isSSR) {
server.hot.send({ type: 'full-reload' })
return []
}
},
}
```

2 changes: 1 addition & 1 deletion packages/dev-server/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@hono/vite-dev-server",
"description": "Vite dev-server plugin for Hono",
"version": "0.18.3",
"version": "0.19.0",
"types": "dist/index.d.ts",
"module": "dist/index.js",
"type": "module",
20 changes: 11 additions & 9 deletions packages/dev-server/src/dev-server.ts
Original file line number Diff line number Diff line change
@@ -43,6 +43,7 @@ export type DevServerOptions = {
*
*/
adapter?: Adapter | Promise<Adapter> | (() => Adapter | Promise<Adapter>)
handleHotUpdate?: VitePlugin['handleHotUpdate']
}

export const defaultOptions: Required<Omit<DevServerOptions, 'env' | 'adapter' | 'loadModule'>> = {
@@ -60,6 +61,15 @@ export const defaultOptions: Required<Omit<DevServerOptions, 'env' | 'adapter' |
/^\/node_modules\/.*/,
],
ignoreWatching: [/\.wrangler/, /\.mf/],
handleHotUpdate: ({ server, modules }) => {
// Force reload the page if any of the modules is SSR
const isSSR = modules.some((mod) => mod._ssrModule)
if (isSSR) {
server.hot.send({ type: 'full-reload' })
return []
}
// Apply HMR for the client-side modules
},
}

export function devServer(options?: DevServerOptions): VitePlugin {
@@ -208,15 +218,7 @@ export function devServer(options?: DevServerOptions): VitePlugin {
}
})
},
handleHotUpdate({ server, modules }) {
// Force reload the page if any of the modules is SSR
const isSSR = modules.some((mod) => mod._ssrModule)
if (isSSR) {
server.hot.send({ type: 'full-reload' })
return []
}
// Apply HMR for the client-side modules
},
handleHotUpdate: options?.handleHotUpdate ?? defaultOptions.handleHotUpdate,
config: () => {
return {
server: {