mirror of
https://github.com/heygen-com/hyperframes.git
synced 2026-09-05 10:14:30 +00:00
* feat: initial code port from hyperframes-internal Port all OSS-ready packages from the internal monorepo: - @hyperframes/core — shared types, HTML generation, GSAP utilities, runtime - @hyperframes/cli — CLI for creating, previewing, and rendering compositions - @hyperframes/engine — framework-agnostic rendering engine (BeginFrame + FFmpeg) - @hyperframes/producer — video rendering pipeline (Puppeteer + FFmpeg) - @hyperframes/ui-player — browser-based video player component - @hyperframes/studio — composition editor (React frontend + Hono backend) Includes regression test suite with Docker-based test harness. All HeyGen-internal references, deployment infrastructure, and proprietary assets have been removed. Package names migrated from @app/* to @hyperframes/*. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * fix: scrub internal codenames and stale references from OSS port - Replace static.heygen.ai runtime URLs in test fixtures - Remove internal CDN publish script (publish-hyperframe-runtime.ts) - Replace sandbox-studio, sandbox-interceptor, __magicEditRuntime with neutral names (studio, hyperframe-runtime, __hyperframeRuntime) - Fix stale Vault API / localhost references in docs - Remove broken deprecated_studio link Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * fix: remove remaining internal codenames and stale references - Delete stale producer README.md and PIPELINE.md (referenced nonexistent files) - Replace "Cerberus" codename with "HyperFrames" in test design reviews - Replace magic-edit postMessage identifiers with hf-preview/hf-parent - Rename debug-magic-edit-timeline.ts to debug-timeline.ts - Replace "Motion Cut" with "HyperFrames" in Timeline comments - Fix studio/CLI references to nonexistent archive package (use local data/projects/ dir, stub render proxy) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
45 lines
1.7 KiB
TypeScript
45 lines
1.7 KiB
TypeScript
import { defineCommand } from "citty";
|
|
import { readFileSync } from "node:fs";
|
|
import { lintHyperframeHtml } from "@hyperframes/core/lint";
|
|
import { c } from "../ui/colors.js";
|
|
import { resolveProject } from "../utils/project.js";
|
|
|
|
export default defineCommand({
|
|
meta: { name: "lint", description: "Validate a composition for common mistakes" },
|
|
args: {
|
|
dir: { type: "positional", description: "Project directory", required: false },
|
|
json: { type: "boolean", description: "Output findings as JSON", default: false },
|
|
},
|
|
async run({ args }) {
|
|
const project = resolveProject(args.dir);
|
|
const html = readFileSync(project.indexPath, "utf-8");
|
|
const result = lintHyperframeHtml(html, { filePath: project.indexPath });
|
|
|
|
if (args.json) {
|
|
console.log(JSON.stringify(result, null, 2));
|
|
process.exit(result.ok ? 0 : 1);
|
|
}
|
|
|
|
console.log(`${c.accent("◆")} Linting ${c.accent(project.name + "/index.html")}`);
|
|
console.log();
|
|
|
|
if (result.ok) {
|
|
console.log(`${c.success("◇")} ${c.success("0 errors, 0 warnings")}`);
|
|
return;
|
|
}
|
|
|
|
for (const finding of result.findings) {
|
|
const prefix = finding.severity === "error" ? c.error("✗") : c.warn("⚠");
|
|
const loc = finding.elementId ? ` ${c.accent(`[${finding.elementId}]`)}` : "";
|
|
console.log(`${prefix} ${c.bold(finding.code)}${loc}: ${finding.message}`);
|
|
if (finding.fixHint) {
|
|
console.log(` ${c.dim(`Fix: ${finding.fixHint}`)}`);
|
|
}
|
|
}
|
|
|
|
const summaryIcon = result.errorCount > 0 ? c.error("◇") : c.success("◇");
|
|
console.log(`\n${summaryIcon} ${result.errorCount} error(s), ${result.warningCount} warning(s)`);
|
|
process.exit(result.errorCount > 0 ? 1 : 0);
|
|
},
|
|
});
|