@remotion/cli 4.0.260 → 4.0.261
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 +5 -5
- package/dist/list-of-remotion-packages.js +2 -0
- package/dist/log.d.ts +5 -5
- package/dist/render-flows/render.js +2 -0
- package/package.json +14 -14
package/dist/index.d.ts
CHANGED
|
@@ -62,15 +62,15 @@ export declare const CliInternals: {
|
|
|
62
62
|
Log: {
|
|
63
63
|
trace: (options: import("@remotion/renderer").LogOptions & {
|
|
64
64
|
tag?: string;
|
|
65
|
-
},
|
|
65
|
+
}, ...args: Parameters<typeof console.log>) => boolean | void;
|
|
66
66
|
verbose: (options: import("@remotion/renderer").LogOptions & {
|
|
67
67
|
tag?: string;
|
|
68
|
-
},
|
|
69
|
-
info: (options: import("@remotion/renderer").LogOptions,
|
|
70
|
-
warn: (options: import("@remotion/renderer").LogOptions,
|
|
68
|
+
}, ...args: Parameters<typeof console.log>) => boolean | void;
|
|
69
|
+
info: (options: import("@remotion/renderer").LogOptions, ...args: Parameters<typeof console.log>) => boolean | void;
|
|
70
|
+
warn: (options: import("@remotion/renderer").LogOptions, ...args: Parameters<typeof console.log>) => boolean | void;
|
|
71
71
|
error: (options: import("@remotion/renderer").LogOptions & {
|
|
72
72
|
tag?: string;
|
|
73
|
-
},
|
|
73
|
+
}, ...args: Parameters<typeof console.log>) => boolean | void;
|
|
74
74
|
};
|
|
75
75
|
getCliOptions: (options: {
|
|
76
76
|
isStill: boolean;
|
|
@@ -44,6 +44,7 @@ exports.listOfRemotionPackages = [
|
|
|
44
44
|
'@remotion/lambda-ruby',
|
|
45
45
|
'@remotion/lambda-python',
|
|
46
46
|
'@remotion/lambda',
|
|
47
|
+
'@remotion/lambda-client',
|
|
47
48
|
'@remotion/layout-utils',
|
|
48
49
|
'@remotion/licensing',
|
|
49
50
|
'@remotion/lottie',
|
|
@@ -61,6 +62,7 @@ exports.listOfRemotionPackages = [
|
|
|
61
62
|
'@remotion/promo-pages',
|
|
62
63
|
'@remotion/streaming',
|
|
63
64
|
'@remotion/serverless',
|
|
65
|
+
'@remotion/serverless-client',
|
|
64
66
|
'@remotion/studio-server',
|
|
65
67
|
'@remotion/studio-shared',
|
|
66
68
|
'@remotion/studio',
|
package/dist/log.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
export declare const Log: {
|
|
2
2
|
trace: (options: import("@remotion/renderer").LogOptions & {
|
|
3
3
|
tag?: string;
|
|
4
|
-
},
|
|
4
|
+
}, ...args: Parameters<typeof console.log>) => boolean | void;
|
|
5
5
|
verbose: (options: import("@remotion/renderer").LogOptions & {
|
|
6
6
|
tag?: string;
|
|
7
|
-
},
|
|
8
|
-
info: (options: import("@remotion/renderer").LogOptions,
|
|
9
|
-
warn: (options: import("@remotion/renderer").LogOptions,
|
|
7
|
+
}, ...args: Parameters<typeof console.log>) => boolean | void;
|
|
8
|
+
info: (options: import("@remotion/renderer").LogOptions, ...args: Parameters<typeof console.log>) => boolean | void;
|
|
9
|
+
warn: (options: import("@remotion/renderer").LogOptions, ...args: Parameters<typeof console.log>) => boolean | void;
|
|
10
10
|
error: (options: import("@remotion/renderer").LogOptions & {
|
|
11
11
|
tag?: string;
|
|
12
|
-
},
|
|
12
|
+
}, ...args: Parameters<typeof console.log>) => boolean | void;
|
|
13
13
|
};
|
|
@@ -215,6 +215,8 @@ const renderVideoFlow = async ({ remotionRoot, fullEntryPoint, indent, logLevel,
|
|
|
215
215
|
codec,
|
|
216
216
|
scale,
|
|
217
217
|
wantsImageSequence: shouldOutputImageSequence,
|
|
218
|
+
indent,
|
|
219
|
+
logLevel,
|
|
218
220
|
});
|
|
219
221
|
const relativeOutputLocation = (0, get_filename_1.getOutputFilename)({
|
|
220
222
|
imageSequence: shouldOutputImageSequence,
|
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.261",
|
|
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/media-utils": "4.0.
|
|
37
|
-
"@remotion/
|
|
38
|
-
"@remotion/
|
|
39
|
-
"@remotion/
|
|
40
|
-
"@remotion/
|
|
41
|
-
"@remotion/studio
|
|
42
|
-
"@remotion/
|
|
43
|
-
"remotion": "4.0.
|
|
36
|
+
"@remotion/media-utils": "4.0.261",
|
|
37
|
+
"@remotion/bundler": "4.0.261",
|
|
38
|
+
"@remotion/studio-shared": "4.0.261",
|
|
39
|
+
"@remotion/renderer": "4.0.261",
|
|
40
|
+
"@remotion/player": "4.0.261",
|
|
41
|
+
"@remotion/studio": "4.0.261",
|
|
42
|
+
"@remotion/studio-server": "4.0.261",
|
|
43
|
+
"remotion": "4.0.261"
|
|
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/zod-types": "4.0.261",
|
|
58
|
+
"@remotion/tailwind-v4": "4.0.261",
|
|
59
|
+
"@remotion/skia": "4.0.261",
|
|
60
|
+
"@remotion/eslint-config-internal": "4.0.261",
|
|
61
|
+
"@remotion/enable-scss": "4.0.261"
|
|
62
62
|
},
|
|
63
63
|
"keywords": [
|
|
64
64
|
"remotion",
|