Appearance
Changelog
The canonical file is CHANGELOG.md at the repository root (next to README.md). Edit that file first; mirror substantive changes here so the doc site stays consistent.
All notable changes to cross-framework are documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning where applicable.
[Unreleased]
Added
- MIT License (
LICENSE) and branding policy (BRANDING.md).
[0.1.0] - initial documented release
Added
- React → Vue 3 SFC conversion via
convert()andconvertCode()(src/convert.ts). - CLI
cross-framework convert(aliascross-ui) with--from react,--to vue,--out-dir(src/index.ts). - Parser for React function components using Babel (
@babel/parser,@babel/traverse) —src/parser/react.ts. - Intermediate representation for components and templates —
src/ir/types.ts. - Vue SFC codegen —
src/codegen/vue.ts. - Tests with Node’s test runner and fixtures under
test/fixtures/. - Nuxt playground under
website/withPOST /api/convertcallingconvertCode. - VitePress documentation under
docs/.