@remotion/cli 4.0.257 → 4.0.259

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
- }, ...args: Parameters<typeof console.log>) => boolean | void;
65
+ }, message?: any, ...optionalParams: any[]) => boolean | void;
66
66
  verbose: (options: import("@remotion/renderer").LogOptions & {
67
67
  tag?: string;
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;
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;
71
71
  error: (options: import("@remotion/renderer").LogOptions & {
72
72
  tag?: string;
73
- }, ...args: Parameters<typeof console.log>) => boolean | void;
73
+ }, message?: any, ...optionalParams: any[]) => boolean | void;
74
74
  };
75
75
  getCliOptions: (options: {
76
76
  isStill: boolean;
@@ -1,47 +1,80 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.listOfRemotionPackages = void 0;
4
- // Keep in sync with create-video
4
+ // Generated by package-sync.test.ts
5
5
  exports.listOfRemotionPackages = [
6
6
  '@remotion/svg-3d-engine',
7
- '@remotion/layout-utils',
7
+ '@remotion/ai-improvements',
8
+ '@remotion/animation-utils',
9
+ '@remotion/animated-emoji',
10
+ '@remotion/astro-example',
11
+ '@remotion/babel-loader',
12
+ '@remotion/bugs',
8
13
  '@remotion/bundler',
14
+ '@remotion/cli-autocomplete',
9
15
  '@remotion/cli',
10
16
  '@remotion/cloudrun',
17
+ '@remotion/compositor-darwin-arm64',
18
+ '@remotion/compositor-darwin-x64',
19
+ '@remotion/compositor-linux-arm64-gnu',
20
+ '@remotion/compositor-linux-arm64-musl',
21
+ '@remotion/compositor-linux-x64-gnu',
22
+ '@remotion/compositor-linux-x64-musl',
23
+ '@remotion/compositor-win32-x64-msvc',
24
+ 'remotion',
25
+ '@remotion/create-video',
26
+ '@remotion/discord-poster',
27
+ '@remotion/docusaurus-plugin',
28
+ '@remotion/docs',
29
+ '@remotion/enable-scss',
11
30
  '@remotion/eslint-config',
12
31
  '@remotion/eslint-config-flat',
32
+ '@remotion/eslint-config-internal',
13
33
  '@remotion/eslint-plugin',
14
- '@remotion/enable-scss',
15
- '@remotion/renderer',
16
- '@remotion/skia',
34
+ '@remotion/example-without-zod',
35
+ '@remotion/example',
36
+ '@remotion/fonts',
37
+ '@remotion/gif',
38
+ '@remotion/google-fonts',
39
+ '@remotion/install-whisper-cpp',
40
+ '@remotion/it-tests',
41
+ '@remotion/lambda-go-example',
42
+ '@remotion/lambda-go',
43
+ '@remotion/lambda-php',
44
+ '@remotion/lambda-ruby',
45
+ '@remotion/lambda-python',
46
+ '@remotion/lambda',
47
+ '@remotion/layout-utils',
48
+ '@remotion/licensing',
17
49
  '@remotion/lottie',
18
50
  '@remotion/media-utils',
19
51
  '@remotion/motion-blur',
20
- '@remotion/google-fonts',
21
52
  '@remotion/noise',
22
53
  '@remotion/paths',
23
- '@remotion/babel-loader',
24
- '@remotion/licensing',
25
- '@remotion/lambda',
54
+ '@remotion/player-example',
26
55
  '@remotion/player',
27
56
  '@remotion/preload',
28
- '@remotion/three',
57
+ '@remotion/renderer',
29
58
  '@remotion/rive',
30
- '@remotion/gif',
31
- '@remotion/serverless',
32
59
  '@remotion/shapes',
33
- '@remotion/studio',
60
+ '@remotion/skia',
61
+ '@remotion/promo-pages',
62
+ '@remotion/streaming',
63
+ '@remotion/serverless',
34
64
  '@remotion/studio-server',
35
65
  '@remotion/studio-shared',
36
- '@remotion/zod-types',
66
+ '@remotion/studio',
37
67
  '@remotion/tailwind',
38
68
  '@remotion/tailwind-v4',
69
+ '@remotion/test-utils',
70
+ '@remotion/three',
39
71
  '@remotion/transitions',
40
- '@remotion/install-whisper-cpp',
41
- '@remotion/openai-whisper',
42
- '@remotion/captions',
43
- '@remotion/animation-utils',
44
- '@remotion/animated-emoji',
45
72
  '@remotion/media-parser',
46
- 'remotion',
73
+ '@remotion/zod-types',
74
+ '@remotion/webcodecs',
75
+ '@remotion/convert',
76
+ '@remotion/captions',
77
+ '@remotion/openai-whisper',
78
+ '@remotion/compositor',
79
+ '@remotion/example-videos',
47
80
  ];
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
- }, ...args: Parameters<typeof console.log>) => boolean | void;
4
+ }, message?: any, ...optionalParams: any[]) => boolean | void;
5
5
  verbose: (options: import("@remotion/renderer").LogOptions & {
6
6
  tag?: string;
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;
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;
10
10
  error: (options: import("@remotion/renderer").LogOptions & {
11
11
  tag?: string;
12
- }, ...args: Parameters<typeof console.log>) => boolean | void;
12
+ }, message?: any, ...optionalParams: any[]) => boolean | void;
13
13
  };
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.257",
6
+ "version": "4.0.259",
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/bundler": "4.0.257",
37
- "@remotion/player": "4.0.257",
38
- "@remotion/media-utils": "4.0.257",
39
- "@remotion/renderer": "4.0.257",
40
- "@remotion/studio-shared": "4.0.257",
41
- "@remotion/studio-server": "4.0.257",
42
- "@remotion/studio": "4.0.257",
43
- "remotion": "4.0.257"
36
+ "@remotion/media-utils": "4.0.259",
37
+ "@remotion/bundler": "4.0.259",
38
+ "@remotion/studio-shared": "4.0.259",
39
+ "@remotion/renderer": "4.0.259",
40
+ "@remotion/player": "4.0.259",
41
+ "@remotion/studio": "4.0.259",
42
+ "remotion": "4.0.259",
43
+ "@remotion/studio-server": "4.0.259"
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.14.0",
57
- "@remotion/zod-types": "4.0.257",
58
- "@remotion/enable-scss": "4.0.257",
59
- "@remotion/skia": "4.0.257",
60
- "@remotion/tailwind-v4": "4.0.257",
61
- "@remotion/eslint-config-internal": "4.0.257"
57
+ "@remotion/zod-types": "4.0.259",
58
+ "@remotion/tailwind-v4": "4.0.259",
59
+ "@remotion/enable-scss": "4.0.259",
60
+ "@remotion/skia": "4.0.259",
61
+ "@remotion/eslint-config-internal": "4.0.259"
62
62
  },
63
63
  "keywords": [
64
64
  "remotion",