@remotion/cli 4.0.424 → 4.0.426
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/benchmark.js +46 -7
- package/dist/browser/ensure.js +5 -6
- package/dist/bundle.js +10 -3
- package/dist/compositions.js +18 -2
- package/dist/config/index.d.ts +24 -12
- package/dist/config/index.js +23 -51
- package/dist/config/number-of-shared-audio-tags.d.ts +2 -0
- package/dist/config/number-of-shared-audio-tags.js +12 -0
- package/dist/config/preview-server.js +3 -1
- package/dist/detect-remotion-server.d.ts +9 -0
- package/dist/detect-remotion-server.js +45 -0
- package/dist/extra-packages.js +2 -2
- package/dist/get-cli-options.d.ts +0 -10
- package/dist/get-cli-options.js +13 -33
- package/dist/get-composition-with-dimension-override.d.ts +3 -1
- package/dist/get-composition-with-dimension-override.js +3 -1
- package/dist/get-config-file-name.js +7 -4
- package/dist/get-env.js +11 -15
- package/dist/get-input-props.js +8 -5
- package/dist/get-render-defaults.js +16 -8
- package/dist/gpu.js +11 -7
- package/dist/index.d.ts +4 -12
- package/dist/index.js +9 -3
- package/dist/is-port-open.d.ts +1 -0
- package/dist/is-port-open.js +24 -0
- package/dist/list-of-remotion-packages.js +2 -0
- package/dist/parse-command-line.d.ts +0 -458
- package/dist/parse-command-line.js +0 -65
- package/dist/parsed-cli.d.ts +1104 -1
- package/dist/parsed-cli.js +24 -33
- package/dist/render-flows/render.d.ts +5 -1
- package/dist/render-flows/render.js +12 -1
- package/dist/render-flows/still.d.ts +5 -1
- package/dist/render-flows/still.js +5 -1
- package/dist/render-queue/process-still.js +13 -8
- package/dist/render-queue/process-video.js +14 -3
- package/dist/render.js +46 -4
- package/dist/setup-cache.d.ts +6 -2
- package/dist/setup-cache.js +5 -3
- package/dist/still.js +31 -3
- package/dist/studio.js +11 -18
- package/package.json +16 -16
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"url": "https://github.com/remotion-dev/remotion/tree/main/packages/cli"
|
|
4
4
|
},
|
|
5
5
|
"name": "@remotion/cli",
|
|
6
|
-
"version": "4.0.
|
|
6
|
+
"version": "4.0.426",
|
|
7
7
|
"description": "Control Remotion features using the `npx remotion` command",
|
|
8
8
|
"main": "dist/index.js",
|
|
9
9
|
"sideEffects": false,
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"remotiond": "remotiond-cli.js"
|
|
14
14
|
},
|
|
15
15
|
"scripts": {
|
|
16
|
-
"formatting": "prettier
|
|
16
|
+
"formatting": "prettier src --check",
|
|
17
17
|
"lint": "eslint src",
|
|
18
18
|
"test": "bun test src",
|
|
19
19
|
"make": "tsgo -d"
|
|
@@ -36,17 +36,17 @@
|
|
|
36
36
|
"author": "Jonny Burger <jonny@remotion.dev>",
|
|
37
37
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@remotion/bundler": "4.0.
|
|
40
|
-
"@remotion/media-utils": "4.0.
|
|
41
|
-
"@remotion/player": "4.0.
|
|
42
|
-
"@remotion/renderer": "4.0.
|
|
43
|
-
"@remotion/studio-shared": "4.0.
|
|
44
|
-
"@remotion/studio-server": "4.0.
|
|
45
|
-
"@remotion/studio": "4.0.
|
|
39
|
+
"@remotion/bundler": "4.0.426",
|
|
40
|
+
"@remotion/media-utils": "4.0.426",
|
|
41
|
+
"@remotion/player": "4.0.426",
|
|
42
|
+
"@remotion/renderer": "4.0.426",
|
|
43
|
+
"@remotion/studio-shared": "4.0.426",
|
|
44
|
+
"@remotion/studio-server": "4.0.426",
|
|
45
|
+
"@remotion/studio": "4.0.426",
|
|
46
46
|
"dotenv": "17.3.1",
|
|
47
47
|
"minimist": "1.2.6",
|
|
48
48
|
"prompts": "2.4.2",
|
|
49
|
-
"remotion": "4.0.
|
|
49
|
+
"remotion": "4.0.426"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|
|
52
52
|
"react": ">=16.8.0",
|
|
@@ -57,14 +57,14 @@
|
|
|
57
57
|
"@types/prompts": "^2.4.1",
|
|
58
58
|
"@types/prettier": "^2.7.2",
|
|
59
59
|
"@types/node": "20.12.14",
|
|
60
|
-
"@remotion/zod-types": "4.0.
|
|
61
|
-
"@remotion/tailwind-v4": "4.0.
|
|
62
|
-
"@remotion/enable-scss": "4.0.
|
|
63
|
-
"@remotion/skia": "4.0.
|
|
60
|
+
"@remotion/zod-types": "4.0.426",
|
|
61
|
+
"@remotion/tailwind-v4": "4.0.426",
|
|
62
|
+
"@remotion/enable-scss": "4.0.426",
|
|
63
|
+
"@remotion/skia": "4.0.426",
|
|
64
64
|
"react": "19.2.3",
|
|
65
65
|
"react-dom": "19.2.3",
|
|
66
|
-
"zod": "3.
|
|
67
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
66
|
+
"zod": "4.3.6",
|
|
67
|
+
"@remotion/eslint-config-internal": "4.0.426",
|
|
68
68
|
"eslint": "9.19.0",
|
|
69
69
|
"@typescript/native-preview": "7.0.0-dev.20260217.1"
|
|
70
70
|
},
|