rollberry 0.1.2 → 0.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/CHANGELOG.md CHANGED
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on Keep a Changelog and the project stays on the `v0.x.x`
6
6
  line until the CLI surface and capture behavior settle.
7
7
 
8
+ ## [0.1.3] - 2026-03-15
9
+
10
+ ### Changed
11
+
12
+ - README now includes a dedicated `Using With npx` section with version-pinned
13
+ examples and common usage patterns.
14
+
8
15
  ## [0.1.2] - 2026-03-15
9
16
 
10
17
  ### Added
package/README.md CHANGED
@@ -28,6 +28,46 @@ npx rollberry capture http://localhost:3000 \
28
28
  On the first run, if Playwright Chromium is missing, Rollberry installs it
29
29
  automatically. `ffmpeg` is not auto-installed.
30
30
 
31
+ ## Using With npx
32
+
33
+ The normal way to run Rollberry is `npx`.
34
+
35
+ Use the latest published version:
36
+
37
+ ```bash
38
+ npx rollberry capture http://localhost:3000 --out ./artifacts/demo.mp4
39
+ ```
40
+
41
+ Pin a specific version:
42
+
43
+ ```bash
44
+ npx rollberry@0.1.2 capture http://localhost:3000 --out ./artifacts/demo.mp4
45
+ ```
46
+
47
+ Capture a local development server:
48
+
49
+ ```bash
50
+ npx rollberry capture http://localhost:3000 \
51
+ --out ./artifacts/local.mp4 \
52
+ --wait-for selector:body
53
+ ```
54
+
55
+ Capture a public page:
56
+
57
+ ```bash
58
+ npx rollberry capture https://playwright.dev \
59
+ --out ./artifacts/playwright.mp4 \
60
+ --duration 8
61
+ ```
62
+
63
+ Notes:
64
+
65
+ - `npx` downloads the published CLI package automatically
66
+ - on the first run, Rollberry installs Playwright Chromium if needed
67
+ - `ffmpeg` and `ffprobe` must already be available on your machine
68
+ - if you want reproducible automation, pin the package version with
69
+ `npx rollberry@<version> ...`
70
+
31
71
  ## What You Get
32
72
 
33
73
  Each run writes:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rollberry",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "CLI to capture smooth top-to-bottom scroll videos from web pages, including localhost URLs.",
5
5
  "type": "module",
6
6
  "packageManager": "pnpm@10.15.0",