codemeld 2.1.1 → 2.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -6,11 +6,11 @@ Bidirectional converter between HTML/CSS/JS and modern frameworks (React, Next.j
6
6
 
7
7
  **Original HTML site** served locally:
8
8
 
9
- ![Original HTML](screenshots/original-html.png)
9
+ ![Original HTML](https://raw.githubusercontent.com/trio-sh/academy-builder/refs/heads/main/original-html%20(1).png)
10
10
 
11
11
  **After running `codemeld convert`** — the same site running as a Vite + React + TypeScript app:
12
12
 
13
- ![Converted Vite + React](screenshots/converted-vite-react.png)
13
+ ![Converted Vite + React](https://raw.githubusercontent.com/trio-sh/academy-builder/refs/heads/main/converted-vite-react.png)
14
14
 
15
15
  > Both screenshots captured with Playwright. The converted React app is pixel-perfect compared to the original HTML — layout, styles, animations, and interactive elements all preserved.
16
16
 
package/dist/cli.js CHANGED
@@ -8,7 +8,7 @@ const program = new Command();
8
8
  program
9
9
  .name('codemeld')
10
10
  .description('Convert between HTML/CSS/JS and modern frameworks (React, Next.js, Vue, Svelte, Angular) — both directions')
11
- .version('2.1.1');
11
+ .version('2.1.3');
12
12
  // ─── Convert command (default) ──────────────────────────────────────
13
13
  program
14
14
  .command('convert', { isDefault: true })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codemeld",
3
- "version": "2.1.1",
3
+ "version": "2.1.3",
4
4
  "description": "Bidirectional converter between HTML/CSS/JS and modern frameworks (React, Next.js, Vue, Svelte, Angular)",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",