Files
story-studio/remotion/node_modules/@remotion/cli/remotiond-cli.js
2026-02-21 10:33:18 +01:00

11 lines
277 B
JavaScript

#!/usr/bin/env deno --allow-env --allow-read --allow-write --allow-net --allow-run --allow-sys
const {cli} = require('./dist/index');
// Just like "remotion", but it uses Bun
cli()
.then(() => process.exit(0))
.catch((err) => {
console.error(err);
process.exit(1);
});