@youtyan/code-viewer 0.6.0 → 0.6.2
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 +21 -15
- package/dist/code-viewer.js +468 -71
- package/package.json +1 -1
- package/skills/code-viewer-snapshot/SKILL.md +6 -0
- package/web/app.js +3127 -808
- package/web/index.html +46 -15
- package/web/style.css +943 -50
package/package.json
CHANGED
|
@@ -97,6 +97,12 @@ Each table summary line is followed by a paste-safe
|
|
|
97
97
|
exact next command per table without rebuilding it. With `--json`, the same
|
|
98
98
|
literal is exposed as a `diffRowsCommand` field on each `tables[]` element.
|
|
99
99
|
|
|
100
|
+
The output also prints a `# view in browser: <url>` line — a direct link
|
|
101
|
+
that opens this same before/after comparison in the human's browser
|
|
102
|
+
(Database > Snapshot tab). Hand this to the human instead of describing
|
|
103
|
+
the diff in prose. With `--json` the same link is the top-level `diffUrl`
|
|
104
|
+
field.
|
|
105
|
+
|
|
100
106
|
Drill into row-level changes for a specific table:
|
|
101
107
|
|
|
102
108
|
```sh
|