Skip to content

Releases: BuilderIO/hydration-overlay

@builder.io/[email protected]

07 Oct 14:31
c8e1a27
Compare
Choose a tag to compare

Minor Changes

  • fe782fd: Allow @spotlightjs/spotlight v2

Patch Changes

  • 05ea38d: Fix peer-dependency range

@builder.io/[email protected]

02 Oct 20:15
4928110
Compare
Choose a tag to compare

Minor Changes

  • e0807d1: Mark @spotlightjs/spotlight as an optional peer dependency

    If you enable spotlight integration, please install the dependency explicitly
    in your project.

    npm install @spotlightjs/spotlight --dev
    yarn add @spotlightjs/spotlight --dev
    pnpm add @spotlightjs/spotlight --dev
  • 22b63c5: Support React 18

    Transition from react-diff-viewer-continued
    to a maintained fork react-diff-viewer-continued
    that supports React 18.

  • b1a2f7b: chore: update build toolchain

@builder.io/[email protected]

30 Jul 18:01
e07c053
Compare
Choose a tag to compare

Minor Changes

  • 1075a84: Added a Spotlight integration in hydration-overlay

@builder.io/[email protected]

23 Jan 17:05
661aa0e
Compare
Choose a tag to compare

Patch Changes

  • ee99699: Fix: remove filename checks (improves hydration error check)

@builder.io/[email protected]

02 Jan 18:56
f97cf11
Compare
Choose a tag to compare

Patch Changes

  • 4154b00: add missing type: 'module' config

@builder.io/[email protected]

21 Dec 07:19
72aa3e3
Compare
Choose a tag to compare

Patch Changes

  • 6a3bf11: Chore: use bunchee to build lib
  • cb37e20: Style: add ltr direction style in Overlay.tsx
  • 6a3bf11: fix webpack import

@builder.io/[email protected]

15 Dec 17:28
a0e413a
Compare
Choose a tag to compare

Patch Changes

  • 669ff5f: - Feature: new webpack plugin:

    const {
      withHydrationOverlayWebpack,
    } = require("@builder.io/react-hydration-overlay/webpack");
    
    /** @type {import('next').NextConfig} */
    const nextConfig = {
      reactStrictMode: true,
      webpack: (config, options) => {
        config = withHydrationOverlayWebpack({
          appRootSelector: "#__next",
          isMainAppEntryPoint: (entryPointName) =>
            !options.isServer &&
            (entryPointName === "pages/_app" || entryPointName === "main-app"),
        })(config);
        return config;
      },
    };
    
    module.exports = nextConfig;

@builder.io/[email protected]

14 Dec 15:54
115ce25
Compare
Choose a tag to compare

Patch Changes

  • 13bed88: Remove console.logs

  • 13bed88: Fix ESM issues:

    • __dirname not being available in Nextjs plugin
    • Overlay import not having explicit .js extension