Coralite v0.33.1 Released
Coralite version 0.33.1 is now available. This release delivers critical reliability fixes to serialization logic, improves codebase maintainability through key utility refactoring, and packages metadata optimized for LLM integrations.
Serialization Reliability and Utility Refactoring #
This release addresses an issue causing circular structure errors during object serialization. We resolved this by integrating the AST-to-HTML transformation directly into normalizeObjectFunctions via a new transform callback, and by introducing an astTransformer within utils.js to handle Coralite AST nodes safely.
To improve structural cleanlines, the following utilities have been relocated from ScriptManager to utils.js:
addComponentAndDependenciescleanASTcleanValues
In addition, TypeScript type definitions have been refined and strict build blocks bypassed with targeted type annotations to prevent downstream pnpm build failures. Unit tests have also been expanded to verify serialization behavior and coverage for the refactored utilities.
LLM Integrations with llms.txt #
Following the updates introduced in the v0.33.0 cycle, Coralite now explicitly includes llms.txt in its package distribution. This ensures LLM-powered developer tools can access framework-specific context directly from the package files.
How to Upgrade #
To upgrade to the latest version, update your project dependencies:
npm install coralite@0.33.1
npm install coralite-scripts@0.33.1
