@remotion/cli 4.0.117 → 4.0.118

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.
package/dist/index.d.ts CHANGED
@@ -104,7 +104,7 @@ export declare const CliInternals: {
104
104
  parsedCli: {
105
105
  "browser-executable": import("@remotion/renderer").BrowserExecutable;
106
106
  "pixel-format": "yuv420p" | "yuva420p" | "yuv422p" | "yuv444p" | "yuv420p10le" | "yuv422p10le" | "yuv444p10le" | "yuva444p10le";
107
- "image-format": "png" | "jpeg" | "none" | "pdf" | "webp";
107
+ "image-format": "png" | "jpeg" | "pdf" | "webp" | "none";
108
108
  "prores-profile": "4444-xq" | "4444" | "hq" | "standard" | "light" | "proxy";
109
109
  "bundle-cache": string;
110
110
  "env-file": string;
@@ -174,7 +174,7 @@ export declare const CliInternals: {
174
174
  downloadName: string | null;
175
175
  outName: string | null;
176
176
  configImageFormat: "png" | "jpeg" | "pdf" | "webp" | null;
177
- cliFlag: "png" | "jpeg" | "none" | "pdf" | "webp" | null;
177
+ cliFlag: "png" | "jpeg" | "pdf" | "webp" | "none" | null;
178
178
  isLambda: boolean;
179
179
  fromUi: "png" | "jpeg" | "pdf" | "webp" | null;
180
180
  }) => {
package/package.json CHANGED
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "@remotion/cli",
3
- "version": "4.0.117",
3
+ "version": "4.0.118",
4
4
  "description": "CLI for Remotion",
5
5
  "main": "dist/index.js",
6
6
  "sideEffects": false,
7
7
  "bin": {
8
- "remotion": "remotion-cli.js"
8
+ "remotion": "remotion-cli.js",
9
+ "remotionb": "remotionb-cli.js"
9
10
  },
10
11
  "repository": {
11
12
  "url": "https://github.com/remotion-dev/remotion"
@@ -31,13 +32,13 @@
31
32
  "dotenv": "9.0.2",
32
33
  "minimist": "1.2.6",
33
34
  "prompts": "2.4.2",
34
- "@remotion/bundler": "4.0.117",
35
- "@remotion/media-utils": "4.0.117",
36
- "@remotion/renderer": "4.0.117",
37
- "@remotion/player": "4.0.117",
38
- "remotion": "4.0.117",
39
- "@remotion/studio-server": "4.0.117",
40
- "@remotion/studio": "4.0.117"
35
+ "@remotion/media-utils": "4.0.118",
36
+ "@remotion/renderer": "4.0.118",
37
+ "@remotion/studio": "4.0.118",
38
+ "@remotion/studio-server": "4.0.118",
39
+ "remotion": "4.0.118",
40
+ "@remotion/player": "4.0.118",
41
+ "@remotion/bundler": "4.0.118"
41
42
  },
42
43
  "peerDependencies": {
43
44
  "react": ">=16.8.0",
@@ -62,8 +63,8 @@
62
63
  "react-dom": "18.2.0",
63
64
  "vitest": "0.31.1",
64
65
  "zod": "^3.22.3",
65
- "@remotion/zod-types": "4.0.117",
66
- "@remotion/tailwind": "4.0.117"
66
+ "@remotion/zod-types": "4.0.118",
67
+ "@remotion/tailwind": "4.0.118"
67
68
  },
68
69
  "keywords": [
69
70
  "remotion",
@@ -0,0 +1,13 @@
1
+ #!/usr/bin/env bun
2
+ const dotenv = require('dotenv');
3
+ dotenv.config();
4
+ const {cli} = require('./dist/index');
5
+
6
+ // Just like "remotion", but it uses Bun
7
+ cli()
8
+ .then(() => process.exit(0))
9
+ .catch((err) => {
10
+ // eslint-disable-next-line no-console
11
+ console.error(err);
12
+ process.exit(1);
13
+ });