@remotion/cli 4.0.116 → 4.0.117
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/config/override-webpack.d.ts +1 -1
- package/dist/index.d.ts +7 -7
- package/dist/setup-cache.js +1 -1
- package/package.json +10 -10
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { WebpackConfiguration } from '@remotion/bundler';
|
|
2
|
-
export type WebpackOverrideFn = (currentConfiguration: WebpackConfiguration) => WebpackConfiguration
|
|
2
|
+
export type WebpackOverrideFn = (currentConfiguration: WebpackConfiguration) => WebpackConfiguration | Promise<WebpackConfiguration>;
|
|
3
3
|
export declare const defaultOverrideFunction: WebpackOverrideFn;
|
|
4
4
|
export declare const getWebpackOverrideFn: () => WebpackOverrideFn;
|
|
5
5
|
export declare const overrideWebpackConfig: (fn: WebpackOverrideFn) => void;
|
package/dist/index.d.ts
CHANGED
|
@@ -70,7 +70,7 @@ export declare const CliInternals: {
|
|
|
70
70
|
};
|
|
71
71
|
getCliOptions: (options: {
|
|
72
72
|
isStill: boolean;
|
|
73
|
-
logLevel: "
|
|
73
|
+
logLevel: "verbose" | "info" | "warn" | "error";
|
|
74
74
|
}) => {
|
|
75
75
|
concurrency: string | number | null;
|
|
76
76
|
frameRange: import("@remotion/renderer").FrameRange | null;
|
|
@@ -98,7 +98,7 @@ export declare const CliInternals: {
|
|
|
98
98
|
binary?: boolean | undefined;
|
|
99
99
|
signed: boolean;
|
|
100
100
|
}) | undefined) => string;
|
|
101
|
-
initializeCli: (remotionRoot: string) => Promise<"
|
|
101
|
+
initializeCli: (remotionRoot: string) => Promise<"verbose" | "info" | "warn" | "error">;
|
|
102
102
|
BooleanFlags: string[];
|
|
103
103
|
quietFlagProvided: () => boolean;
|
|
104
104
|
parsedCli: {
|
|
@@ -168,7 +168,7 @@ export declare const CliInternals: {
|
|
|
168
168
|
} & {
|
|
169
169
|
_: string[];
|
|
170
170
|
};
|
|
171
|
-
printError: (err: Error, logLevel: "
|
|
171
|
+
printError: (err: Error, logLevel: "verbose" | "info" | "warn" | "error") => Promise<void>;
|
|
172
172
|
getFileSizeDownloadBar: (downloaded: number) => string;
|
|
173
173
|
determineFinalStillImageFormat: ({ downloadName, outName, configImageFormat, cliFlag, isLambda, fromUi, }: {
|
|
174
174
|
downloadName: string | null;
|
|
@@ -182,7 +182,7 @@ export declare const CliInternals: {
|
|
|
182
182
|
source: string;
|
|
183
183
|
};
|
|
184
184
|
minimist: typeof minimist;
|
|
185
|
-
findEntryPoint: (args: string[], remotionRoot: string, logLevel: "
|
|
185
|
+
findEntryPoint: (args: string[], remotionRoot: string, logLevel: "verbose" | "info" | "warn" | "error") => {
|
|
186
186
|
file: string | null;
|
|
187
187
|
remainingArgs: string[];
|
|
188
188
|
reason: "argument passed - found in cwd" | "argument passed - found in root" | "argument passed" | "config file" | "common paths" | "none found";
|
|
@@ -191,10 +191,10 @@ export declare const CliInternals: {
|
|
|
191
191
|
codec: import("@remotion/renderer").CodecOrUndefined;
|
|
192
192
|
uiImageFormat: "png" | "jpeg" | "none" | null;
|
|
193
193
|
}) => "png" | "jpeg" | "none";
|
|
194
|
-
printCompositions: (compositions: import("remotion").VideoConfig[], logLevel: "
|
|
194
|
+
printCompositions: (compositions: import("remotion").VideoConfig[], logLevel: "verbose" | "info" | "warn" | "error") => void;
|
|
195
195
|
listOfRemotionPackages: string[];
|
|
196
196
|
shouldUseNonOverlayingLogger: ({ logLevel, }: {
|
|
197
|
-
logLevel: "
|
|
197
|
+
logLevel: "verbose" | "info" | "warn" | "error";
|
|
198
198
|
}) => boolean;
|
|
199
199
|
getCompositionWithDimensionOverride: ({ height, width, args, compositionIdFromUi, chromiumOptions, envVariables, port, puppeteerInstance, timeoutInMilliseconds, browserExecutable, serveUrlOrWebpackUrl, indent, serializedInputPropsWithCustomSchema, logLevel, server, offthreadVideoCacheSizeInBytes, }: {
|
|
200
200
|
height: number | null;
|
|
@@ -209,7 +209,7 @@ export declare const CliInternals: {
|
|
|
209
209
|
browserExecutable: import("@remotion/renderer").BrowserExecutable;
|
|
210
210
|
serveUrlOrWebpackUrl: string;
|
|
211
211
|
indent: boolean;
|
|
212
|
-
logLevel: "
|
|
212
|
+
logLevel: "verbose" | "info" | "warn" | "error";
|
|
213
213
|
serializedInputPropsWithCustomSchema: string;
|
|
214
214
|
server: import("@remotion/renderer").RemotionServer;
|
|
215
215
|
offthreadVideoCacheSizeInBytes: number | null;
|
package/dist/setup-cache.js
CHANGED
|
@@ -98,7 +98,7 @@ const bundleOnCli = async ({ fullPath, remotionRoot, publicDir, onProgressCallba
|
|
|
98
98
|
onPublicDirCopyProgress,
|
|
99
99
|
onSymlinkDetected,
|
|
100
100
|
};
|
|
101
|
-
const [hash] = bundler_1.BundlerInternals.getConfig({
|
|
101
|
+
const [hash] = await bundler_1.BundlerInternals.getConfig({
|
|
102
102
|
outDir: '',
|
|
103
103
|
entryPoint: fullPath,
|
|
104
104
|
onProgress,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remotion/cli",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.117",
|
|
4
4
|
"description": "CLI for Remotion",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -31,13 +31,13 @@
|
|
|
31
31
|
"dotenv": "9.0.2",
|
|
32
32
|
"minimist": "1.2.6",
|
|
33
33
|
"prompts": "2.4.2",
|
|
34
|
-
"@remotion/
|
|
35
|
-
"@remotion/
|
|
36
|
-
"@remotion/
|
|
37
|
-
"@remotion/
|
|
38
|
-
"remotion": "4.0.
|
|
39
|
-
"@remotion/
|
|
40
|
-
"@remotion/studio": "4.0.
|
|
34
|
+
"@remotion/bundler": "4.0.117",
|
|
35
|
+
"@remotion/media-utils": "4.0.117",
|
|
36
|
+
"@remotion/renderer": "4.0.117",
|
|
37
|
+
"@remotion/player": "4.0.117",
|
|
38
|
+
"remotion": "4.0.117",
|
|
39
|
+
"@remotion/studio-server": "4.0.117",
|
|
40
|
+
"@remotion/studio": "4.0.117"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
|
43
43
|
"react": ">=16.8.0",
|
|
@@ -62,8 +62,8 @@
|
|
|
62
62
|
"react-dom": "18.2.0",
|
|
63
63
|
"vitest": "0.31.1",
|
|
64
64
|
"zod": "^3.22.3",
|
|
65
|
-
"@remotion/zod-types": "4.0.
|
|
66
|
-
"@remotion/tailwind": "4.0.
|
|
65
|
+
"@remotion/zod-types": "4.0.117",
|
|
66
|
+
"@remotion/tailwind": "4.0.117"
|
|
67
67
|
},
|
|
68
68
|
"keywords": [
|
|
69
69
|
"remotion",
|