Releases: SylphxAI/pura
Releases · SylphxAI/pura
@sylphx/pura@1.0.1
@sylphx/pura@1.0.0
Major Changes
-
BREAKING CHANGE: Remove
repura()functionThe
repura()function has been removed as it was redundant. It was functionally identical topura(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()andproduceFast()functions handle wrapping automatically.Other changes:
- Added comprehensive documentation site at https://pura.sylphx.com
- Published as
@sylphx/puraon npm - Updated all API documentation and guides