@qwertybit/pr-preview 0.1.4 → 0.1.6
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/CHANGELOG.md +21 -1
- package/README.md +6 -1
- package/assets/demo.gif +0 -0
- package/assets/demo.mp4 +0 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,24 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.1.6] — 2026-07-07
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
|
|
13
|
+
- **Demo shown inline** — the README now embeds the demo directly at the top
|
|
14
|
+
(an inline `<video>` player on GitHub; the autoplaying GIF on npm, which can't
|
|
15
|
+
render video) instead of a separate "Watch in higher quality" link. Demo URLs
|
|
16
|
+
are version-pinned so the CDN/GitHub image proxy never serve a stale clip.
|
|
17
|
+
|
|
18
|
+
## [0.1.5] — 2026-07-07
|
|
19
|
+
|
|
20
|
+
### Changed
|
|
21
|
+
|
|
22
|
+
- **New demo animation** — refreshed the README/npm demo with a designed
|
|
23
|
+
walkthrough of the full flow: a Claude Code prompt kicks off the run, the app is
|
|
24
|
+
driven automatically in a real Chrome window (add to cart → checkout, recording a
|
|
25
|
+
before/after), and out come `before.mp4` + `after.mp4`. Also available as an MP4.
|
|
26
|
+
|
|
9
27
|
## [0.1.4] — 2026-07-07
|
|
10
28
|
|
|
11
29
|
### Fixed
|
|
@@ -99,6 +117,8 @@ Initial release.
|
|
|
99
117
|
CSP `frame-ancestors`) are stripped.
|
|
100
118
|
- CLI: `pr-preview init`, `pr-preview record`, `pr-preview run`.
|
|
101
119
|
|
|
102
|
-
[Unreleased]: https://github.com/QwertyBit-Ventures/pr-preview/compare/v0.1.
|
|
120
|
+
[Unreleased]: https://github.com/QwertyBit-Ventures/pr-preview/compare/v0.1.6...HEAD
|
|
121
|
+
[0.1.6]: https://github.com/QwertyBit-Ventures/pr-preview/compare/v0.1.5...v0.1.6
|
|
122
|
+
[0.1.5]: https://github.com/QwertyBit-Ventures/pr-preview/compare/v0.1.4...v0.1.5
|
|
103
123
|
[0.1.4]: https://github.com/QwertyBit-Ventures/pr-preview/compare/v0.1.0...v0.1.4
|
|
104
124
|
[0.1.0]: https://github.com/QwertyBit-Ventures/pr-preview/releases/tag/v0.1.0
|
package/README.md
CHANGED
|
@@ -15,8 +15,13 @@
|
|
|
15
15
|
<a href="https://pr-preview.com"><img src="https://img.shields.io/badge/website-pr--preview.com-635bff" alt="pr-preview.com" /></a>
|
|
16
16
|
</p>
|
|
17
17
|
|
|
18
|
+
<!-- GitHub renders this <video> as an inline player; npm strips it and falls back to the GIF below. -->
|
|
18
19
|
<p align="center">
|
|
19
|
-
<
|
|
20
|
+
<video src="https://cdn.jsdelivr.net/npm/@qwertybit/pr-preview@0.1.6/assets/demo.mp4" width="720" controls autoplay muted loop playsinline></video>
|
|
21
|
+
</p>
|
|
22
|
+
|
|
23
|
+
<p align="center">
|
|
24
|
+
<img src="https://cdn.jsdelivr.net/npm/@qwertybit/pr-preview@0.1.6/assets/demo.gif" alt="PR Preview demo — a Claude Code prompt drives the app in Chrome and produces before/after videos" width="720" />
|
|
20
25
|
</p>
|
|
21
26
|
|
|
22
27
|
**PR Preview** opens your app in a controlled Chrome window and records the journey you perform —
|
package/assets/demo.gif
CHANGED
|
Binary file
|
package/assets/demo.mp4
ADDED
|
Binary file
|
package/package.json
CHANGED