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 +2 -2
- package/dist/cli.js +1 -1
- package/package.json +1 -1
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
|
-
.png)
|
|
10
10
|
|
|
11
11
|
**After running `codemeld convert`** — the same site running as a Vite + React + TypeScript app:
|
|
12
12
|
|
|
13
|
-

|
|
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.
|
|
11
|
+
.version('2.1.3');
|
|
12
12
|
// ─── Convert command (default) ──────────────────────────────────────
|
|
13
13
|
program
|
|
14
14
|
.command('convert', { isDefault: true })
|
package/package.json
CHANGED