mirror of
https://github.com/heygen-com/hyperframes.git
synced 2026-09-03 23:03:09 +00:00
Install all registry blocks matching a tag in one command: hyperframes add --tag vfx # installs all 7 VFX blocks hyperframes add --tag captions # installs all 5 caption blocks The resolver loads each item's full manifest to check tags, then installs matching blocks sequentially. Failed items are skipped with a warning so one broken block doesn't abort the batch. Also supports JSON output for CI: hyperframes add --tag vfx --json
22 lines
363 B
TypeScript
22 lines
363 B
TypeScript
export {
|
|
DEFAULT_REGISTRY_URL,
|
|
fetchRegistryManifest,
|
|
fetchItemManifest,
|
|
fetchItemFile,
|
|
} from "./remote.js";
|
|
|
|
export {
|
|
listRegistryItems,
|
|
loadAllItems,
|
|
resolveItem,
|
|
resolveItemsByTag,
|
|
type ResolveOptions,
|
|
} from "./resolver.js";
|
|
|
|
export {
|
|
installItem,
|
|
assertSafeTarget,
|
|
type InstallOptions,
|
|
type InstallResult,
|
|
} from "./installer.js";
|