Skip to content

Releases: SylphxAI/pura

@sylphx/pura@1.0.1

22 Nov 04:20
51406b0

Choose a tag to compare

Patch Changes

  • 0c96295 Thanks @shtse8! - Fix build configuration to include dist files in npm package. The v1.0.0 release was missing compiled JavaScript files.

@sylphx/pura@1.0.0

22 Nov 04:07

Choose a tag to compare

Major Changes

  • BREAKING CHANGE: Remove repura() function

    The repura() function has been removed as it was redundant. It was functionally identical to pura(unpura(value)).

    Migration:

    // Before
    import { repura } from "pura";
    const optimized = repura(data);
    
    // After
    import { pura, unpura } from "pura";
    const optimized = pura(unpura(data));

    Note: In most cases, you don't need to manually re-wrap data. The produce() and produceFast() functions handle wrapping automatically.

    Other changes:

    • Added comprehensive documentation site at https://pura.sylphx.com
    • Published as @sylphx/pura on npm
    • Updated all API documentation and guides