@remotion/cli 4.0.291 → 4.0.293
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 +2 -2
- package/dist/compositions.js +1 -1
- package/dist/render-flows/render.js +2 -2
- package/dist/render-flows/still.js +1 -1
- package/dist/render.js +1 -1
- package/dist/still.js +1 -1
- package/package.json +14 -14
package/dist/benchmark.js
CHANGED
|
@@ -171,7 +171,7 @@ const benchmarkCommand = async (remotionRoot, args, logLevel) => {
|
|
|
171
171
|
});
|
|
172
172
|
(0, cleanup_before_quit_1.registerCleanupJob)(`Deleting bundle`, () => cleanupBundle());
|
|
173
173
|
const puppeteerInstance = await browserInstance;
|
|
174
|
-
const serializedInputPropsWithCustomSchema = no_react_1.NoReactInternals.
|
|
174
|
+
const serializedInputPropsWithCustomSchema = no_react_1.NoReactInternals.serializeJSONWithSpecialTypes({
|
|
175
175
|
data: inputProps !== null && inputProps !== void 0 ? inputProps : {},
|
|
176
176
|
indent: undefined,
|
|
177
177
|
staticBase: null,
|
|
@@ -323,7 +323,7 @@ const benchmarkCommand = async (remotionRoot, args, logLevel) => {
|
|
|
323
323
|
onStart: () => undefined,
|
|
324
324
|
preferLossless: false,
|
|
325
325
|
server: undefined,
|
|
326
|
-
serializedResolvedPropsWithCustomSchema: no_react_1.NoReactInternals.
|
|
326
|
+
serializedResolvedPropsWithCustomSchema: no_react_1.NoReactInternals.serializeJSONWithSpecialTypes({
|
|
327
327
|
data: composition.props,
|
|
328
328
|
indent: undefined,
|
|
329
329
|
staticBase: null,
|
package/dist/compositions.js
CHANGED
|
@@ -85,7 +85,7 @@ const listCompositionsCommand = async (remotionRoot, args, logLevel) => {
|
|
|
85
85
|
browserExecutable,
|
|
86
86
|
chromiumOptions,
|
|
87
87
|
envVariables,
|
|
88
|
-
serializedInputPropsWithCustomSchema: no_react_1.NoReactInternals.
|
|
88
|
+
serializedInputPropsWithCustomSchema: no_react_1.NoReactInternals.serializeJSONWithSpecialTypes({
|
|
89
89
|
data: inputProps,
|
|
90
90
|
staticBase: null,
|
|
91
91
|
indent: undefined,
|
|
@@ -335,7 +335,7 @@ const renderVideoFlow = async ({ remotionRoot, fullEntryPoint, indent, logLevel,
|
|
|
335
335
|
onBrowserLog: null,
|
|
336
336
|
onFrameBuffer: null,
|
|
337
337
|
logLevel,
|
|
338
|
-
serializedResolvedPropsWithCustomSchema: no_react_1.NoReactInternals.
|
|
338
|
+
serializedResolvedPropsWithCustomSchema: no_react_1.NoReactInternals.serializeJSONWithSpecialTypes({
|
|
339
339
|
indent: undefined,
|
|
340
340
|
staticBase: null,
|
|
341
341
|
data: config.props,
|
|
@@ -419,7 +419,7 @@ const renderVideoFlow = async ({ remotionRoot, fullEntryPoint, indent, logLevel,
|
|
|
419
419
|
disallowParallelEncoding,
|
|
420
420
|
onBrowserLog: null,
|
|
421
421
|
onStart: () => undefined,
|
|
422
|
-
serializedResolvedPropsWithCustomSchema: no_react_1.NoReactInternals.
|
|
422
|
+
serializedResolvedPropsWithCustomSchema: no_react_1.NoReactInternals.serializeJSONWithSpecialTypes({
|
|
423
423
|
data: config.props,
|
|
424
424
|
indent: undefined,
|
|
425
425
|
staticBase: null,
|
|
@@ -236,7 +236,7 @@ const renderStillFlow = async ({ remotionRoot, fullEntryPoint, entryPointReason,
|
|
|
236
236
|
indent,
|
|
237
237
|
onBrowserLog: null,
|
|
238
238
|
logLevel,
|
|
239
|
-
serializedResolvedPropsWithCustomSchema: no_react_1.NoReactInternals.
|
|
239
|
+
serializedResolvedPropsWithCustomSchema: no_react_1.NoReactInternals.serializeJSONWithSpecialTypes({
|
|
240
240
|
indent: undefined,
|
|
241
241
|
staticBase: null,
|
|
242
242
|
data: config.props,
|
package/dist/render.js
CHANGED
|
@@ -117,7 +117,7 @@ const render = async (remotionRoot, args, logLevel) => {
|
|
|
117
117
|
shouldOutputImageSequence,
|
|
118
118
|
publicDir,
|
|
119
119
|
envVariables,
|
|
120
|
-
serializedInputPropsWithCustomSchema: no_react_1.NoReactInternals.
|
|
120
|
+
serializedInputPropsWithCustomSchema: no_react_1.NoReactInternals.serializeJSONWithSpecialTypes({
|
|
121
121
|
indent: undefined,
|
|
122
122
|
staticBase: null,
|
|
123
123
|
data: inputProps,
|
package/dist/still.js
CHANGED
|
@@ -83,7 +83,7 @@ const still = async (remotionRoot, args, logLevel) => {
|
|
|
83
83
|
chromiumOptions,
|
|
84
84
|
envVariables,
|
|
85
85
|
height,
|
|
86
|
-
serializedInputPropsWithCustomSchema: no_react_1.NoReactInternals.
|
|
86
|
+
serializedInputPropsWithCustomSchema: no_react_1.NoReactInternals.serializeJSONWithSpecialTypes({
|
|
87
87
|
data: inputProps,
|
|
88
88
|
indent: undefined,
|
|
89
89
|
staticBase: null,
|
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.293",
|
|
7
7
|
"description": "Control Remotion features using the `npx remotion` command",
|
|
8
8
|
"main": "dist/index.js",
|
|
9
9
|
"sideEffects": false,
|
|
@@ -33,14 +33,14 @@
|
|
|
33
33
|
"dotenv": "9.0.2",
|
|
34
34
|
"minimist": "1.2.6",
|
|
35
35
|
"prompts": "2.4.2",
|
|
36
|
-
"@remotion/
|
|
37
|
-
"@remotion/
|
|
38
|
-
"@remotion/
|
|
39
|
-
"@remotion/
|
|
40
|
-
"
|
|
41
|
-
"@remotion/
|
|
42
|
-
"remotion": "4.0.
|
|
43
|
-
"@remotion/studio
|
|
36
|
+
"@remotion/player": "4.0.293",
|
|
37
|
+
"@remotion/renderer": "4.0.293",
|
|
38
|
+
"@remotion/studio-shared": "4.0.293",
|
|
39
|
+
"@remotion/studio-server": "4.0.293",
|
|
40
|
+
"remotion": "4.0.293",
|
|
41
|
+
"@remotion/media-utils": "4.0.293",
|
|
42
|
+
"@remotion/bundler": "4.0.293",
|
|
43
|
+
"@remotion/studio": "4.0.293"
|
|
44
44
|
},
|
|
45
45
|
"peerDependencies": {
|
|
46
46
|
"react": ">=16.8.0",
|
|
@@ -54,11 +54,11 @@
|
|
|
54
54
|
"react-dom": "19.0.0",
|
|
55
55
|
"zod": "3.22.3",
|
|
56
56
|
"eslint": "9.19.0",
|
|
57
|
-
"@remotion/
|
|
58
|
-
"@remotion/
|
|
59
|
-
"@remotion/skia": "4.0.
|
|
60
|
-
"@remotion/
|
|
61
|
-
"@remotion/
|
|
57
|
+
"@remotion/tailwind-v4": "4.0.293",
|
|
58
|
+
"@remotion/enable-scss": "4.0.293",
|
|
59
|
+
"@remotion/skia": "4.0.293",
|
|
60
|
+
"@remotion/eslint-config-internal": "4.0.293",
|
|
61
|
+
"@remotion/zod-types": "4.0.293"
|
|
62
62
|
},
|
|
63
63
|
"keywords": [
|
|
64
64
|
"remotion",
|