Skip to content

Releases: tien/reactive-dot

@reactive-dot/[email protected]

20 Oct 10:41
0a1db00
Compare
Choose a tag to compare

Patch Changes

@reactive-dot/[email protected]

20 Oct 19:41
45921ec
Compare
Choose a tag to compare

Patch Changes

@reactive-dot/[email protected]

20 Oct 10:40
0a1db00
Compare
Choose a tag to compare

Patch Changes

@reactive-dot/[email protected]

20 Oct 19:41
45921ec
Compare
Choose a tag to compare

Patch Changes

@reactive-dot/[email protected]

20 Oct 19:41
45921ec
Compare
Choose a tag to compare

Patch Changes

@reactive-dot/[email protected]

20 Oct 10:40
0a1db00
Compare
Choose a tag to compare

Minor Changes

  • #270 08e5517 Thanks @tien! - BREAKING: simplified chain type registration.

    Old approach:

    import type { config } from "./config.js";
    import type { InferChains } from "@reactive-dot/core";
    
    declare module "@reactive-dot/core" {
      export interface Chains extends InferChains<typeof config> {}
    }

    New approach:

    import type { config } from "./config.js";
    
    declare module "@reactive-dot/core" {
      export interface Register {
        config: typeof config;
      }
    }

Patch Changes

@reactive-dot/[email protected]

20 Oct 19:41
45921ec
Compare
Choose a tag to compare

Patch Changes

@reactive-dot/[email protected]

20 Oct 10:40
0a1db00
Compare
Choose a tag to compare

Minor Changes

  • #270 08e5517 Thanks @tien! - BREAKING: simplified chain type registration.

    Old approach:

    import type { config } from "./config.js";
    import type { InferChains } from "@reactive-dot/core";
    
    declare module "@reactive-dot/core" {
      export interface Chains extends InferChains<typeof config> {}
    }

    New approach:

    import type { config } from "./config.js";
    
    declare module "@reactive-dot/core" {
      export interface Register {
        config: typeof config;
      }
    }

Patch Changes

@reactive-dot/[email protected]

20 Oct 19:41
45921ec
Compare
Choose a tag to compare

Minor Changes

@reactive-dot/[email protected]

20 Oct 10:40
0a1db00
Compare
Choose a tag to compare

Minor Changes

  • #270 08e5517 Thanks @tien! - BREAKING: simplified chain type registration.

    Old approach:

    import type { config } from "./config.js";
    import type { InferChains } from "@reactive-dot/core";
    
    declare module "@reactive-dot/core" {
      export interface Chains extends InferChains<typeof config> {}
    }

    New approach:

    import type { config } from "./config.js";
    
    declare module "@reactive-dot/core" {
      export interface Register {
        config: typeof config;
      }
    }