@remotion/cli 4.0.260 → 4.0.262

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
@@ -62,15 +62,15 @@ export declare const CliInternals: {
62
62
  Log: {
63
63
  trace: (options: import("@remotion/renderer").LogOptions & {
64
64
  tag?: string;
65
- }, message?: any, ...optionalParams: any[]) => boolean | void;
65
+ }, ...args: Parameters<typeof console.log>) => boolean | void;
66
66
  verbose: (options: import("@remotion/renderer").LogOptions & {
67
67
  tag?: string;
68
- }, message?: any, ...optionalParams: any[]) => boolean | void;
69
- info: (options: import("@remotion/renderer").LogOptions, message?: any, ...optionalParams: any[]) => boolean | void;
70
- warn: (options: import("@remotion/renderer").LogOptions, message?: any, ...optionalParams: any[]) => boolean | void;
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
- }, message?: any, ...optionalParams: any[]) => boolean | void;
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
- }, message?: any, ...optionalParams: any[]) => boolean | void;
4
+ }, ...args: Parameters<typeof console.log>) => boolean | void;
5
5
  verbose: (options: import("@remotion/renderer").LogOptions & {
6
6
  tag?: string;
7
- }, message?: any, ...optionalParams: any[]) => boolean | void;
8
- info: (options: import("@remotion/renderer").LogOptions, message?: any, ...optionalParams: any[]) => boolean | void;
9
- warn: (options: import("@remotion/renderer").LogOptions, message?: any, ...optionalParams: any[]) => boolean | void;
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
- }, message?: any, ...optionalParams: any[]) => boolean | void;
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.260",
6
+ "version": "4.0.262",
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.260",
37
- "@remotion/player": "4.0.260",
38
- "@remotion/renderer": "4.0.260",
39
- "@remotion/studio-shared": "4.0.260",
40
- "@remotion/studio": "4.0.260",
41
- "@remotion/studio-server": "4.0.260",
42
- "@remotion/bundler": "4.0.260",
43
- "remotion": "4.0.260"
36
+ "@remotion/bundler": "4.0.262",
37
+ "@remotion/player": "4.0.262",
38
+ "@remotion/renderer": "4.0.262",
39
+ "@remotion/media-utils": "4.0.262",
40
+ "@remotion/studio-shared": "4.0.262",
41
+ "@remotion/studio-server": "4.0.262",
42
+ "remotion": "4.0.262",
43
+ "@remotion/studio": "4.0.262"
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/tailwind-v4": "4.0.260",
58
- "@remotion/enable-scss": "4.0.260",
59
- "@remotion/skia": "4.0.260",
60
- "@remotion/zod-types": "4.0.260",
61
- "@remotion/eslint-config-internal": "4.0.260"
57
+ "@remotion/zod-types": "4.0.262",
58
+ "@remotion/tailwind-v4": "4.0.262",
59
+ "@remotion/enable-scss": "4.0.262",
60
+ "@remotion/skia": "4.0.262",
61
+ "@remotion/eslint-config-internal": "4.0.262"
62
62
  },
63
63
  "keywords": [
64
64
  "remotion",