Skip to content

Latest commit

 

History

History
247 lines (129 loc) · 13.5 KB

CHANGELOG.md

File metadata and controls

247 lines (129 loc) · 13.5 KB

@hono/vite-dev-server

0.18.1

Patch Changes

0.18.0

Minor Changes

0.17.0

Minor Changes

0.16.0

Minor Changes

0.15.2

Patch Changes

0.15.1

Patch Changes

0.15.0

Minor Changes

Patch Changes

0.14.0

Minor Changes

0.13.1

Patch Changes

0.13.0

Minor Changes

Patch Changes

0.12.2

Patch Changes

0.12.1

Patch Changes

0.12.0

Minor Changes

Patch Changes

0.11.1

Patch Changes

0.11.0

Minor Changes

0.10.0

Minor Changes

  • #111 fcc98f92cd45df52ce34380414072d0b10e8c701 Thanks @tseijp! - Added .mf to ignoreWatching in vite-plugin to fix unnecessary server reloads on file changes. This update prevents the Vite server from restarting when .mf files are modified, improving development experience.

0.9.0

Minor Changes

0.8.2

Patch Changes

0.8.1

Patch Changes

0.8.0

Minor Changes

Patch Changes

0.7.1

Patch Changes

0.7.0

Minor Changes

0.6.1

Patch Changes

0.6.0

Minor Changes

0.5.1

Patch Changes

0.5.0

Minor Changes

  • #63 10a7ab5da5e61cf314cc7566ddfa53552bf3172a Thanks @marbemac! - Leverage vite error handling. To leverage this, return client errors in development like in the example below:

    honoApp.get('*', async c => {
      try {
        // react, solid, etc
        const app = await renderClientApp(<App />);
    
        return new Response(app, { headers: { 'Content-Type': 'text/html' } });
      } catch (err: any) {
        // in dev, pass the error back to the vite dev server to display in the error overlay
        if (import.meta.env.DEV) return err;
    
        throw err;
      }
    });

0.4.1

Patch Changes

0.4.0

Minor Changes

0.3.5

Patch Changes

0.3.4

Patch Changes

0.3.3

Patch Changes

0.3.2

Patch Changes

0.3.1

Patch Changes

0.3.0

Minor Changes