vibemovie 0.1.0 → 0.1.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.
Files changed (2) hide show
  1. package/dist/cli.js +2 -2
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -10,7 +10,7 @@ import {
10
10
 
11
11
  // src/cli.ts
12
12
  import { readFile } from "fs/promises";
13
- import { pathToFileURL } from "url";
13
+ import "url";
14
14
  var CliError = class extends Error {
15
15
  };
16
16
  var HELP = `vibemovie \u2014 your agent coding session as a short recap video
@@ -175,7 +175,7 @@ async function main(argv) {
175
175
  `);
176
176
  process.stdout.write(" hyperframes \xB7 offline \xB7 zero keys\n");
177
177
  }
178
- var invokedAsScript = typeof process.argv[1] === "string" && import.meta.url === pathToFileURL(process.argv[1]).href;
178
+ var invokedAsScript = typeof process.argv[1] === "string";
179
179
  if (invokedAsScript) {
180
180
  main(process.argv.slice(2)).catch((err) => {
181
181
  const msg = err instanceof Error ? err.message : String(err);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vibemovie",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Your agent coding session as a short recap video — Hyperframes (HTML/CSS/JS) with zero gen-video keys, or your own video model. For Claude Code, Codex, Gemini, and other agentic CLIs. Local-first.",
5
5
  "type": "module",
6
6
  "license": "MIT",