11 lines
277 B
JavaScript
Executable File
11 lines
277 B
JavaScript
Executable File
#!/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);
|
|
});
|