clipwise 0.5.0 → 0.5.1

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.ko.md CHANGED
@@ -5,7 +5,7 @@
5
5
  YAML 시나리오를 작성하면 시네마틱 데모 영상(MP4/GIF)을 자동으로 만들어주는 스크린 레코더. Playwright CDP 기반.
6
6
 
7
7
  <p align="center">
8
- <img src="https://kwakseongjae.github.io/clipwise/demo.gif" alt="Clipwise 데모" width="100%" />
8
+ <img src="./docs/demo.gif" alt="Clipwise 데모" width="100%" />
9
9
  </p>
10
10
 
11
11
  > *`npx clipwise demo` 한 줄로 생성된 영상입니다 — YAML 파일 1개, 239줄.*
package/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
  Scriptable cinematic screen recorder for product demos — YAML in, polished MP4 out. Powered by Playwright CDP.
6
6
 
7
7
  <p align="center">
8
- <img src="https://kwakseongjae.github.io/clipwise/demo.gif" alt="Clipwise demo" width="100%" />
8
+ <img src="./docs/demo.gif" alt="Clipwise demo" width="100%" />
9
9
  </p>
10
10
 
11
11
  > *Generated with `npx clipwise demo` — 1 YAML file, 239 lines, one command.*
package/dist/cli/index.js CHANGED
@@ -2890,8 +2890,7 @@ program.name("clipwise").description(
2890
2890
  ).version("0.1.0");
2891
2891
  program.command("record").description("Record a demo from a YAML scenario file").argument("<scenario>", "Path to YAML scenario file").option("-o, --output <dir>", "Output directory", "./output").option(
2892
2892
  "-f, --format <format>",
2893
- "Output format (gif|mp4|png-sequence)",
2894
- "gif"
2893
+ "Output format (gif|mp4|png-sequence)"
2895
2894
  ).option("--no-effects", "Disable all effects").action(async (scenarioPath, options) => {
2896
2895
  const spinner = ora();
2897
2896
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clipwise",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "description": "Scriptable cinematic screen recorder for product demos — YAML in, polished MP4 out",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",