@remotion/cli 4.0.468 → 4.0.469
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/parsed-cli.d.ts +28 -12
- package/dist/parsed-cli.js +13 -1
- package/package.json +14 -14
package/dist/parsed-cli.d.ts
CHANGED
|
@@ -996,6 +996,21 @@ declare const allowHtmlInCanvasOption: {
|
|
|
996
996
|
};
|
|
997
997
|
setConfig: (value: import("@remotion/renderer").FrameRange | null) => void;
|
|
998
998
|
id: "frames";
|
|
999
|
+
}, isProductionOption: {
|
|
1000
|
+
name: string;
|
|
1001
|
+
cliFlag: "is-production";
|
|
1002
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
1003
|
+
ssrName: "isProduction";
|
|
1004
|
+
docLink: string;
|
|
1005
|
+
getValue: ({ commandLine }: {
|
|
1006
|
+
commandLine: Record<string, unknown>;
|
|
1007
|
+
}) => {
|
|
1008
|
+
source: string;
|
|
1009
|
+
value: boolean | null;
|
|
1010
|
+
};
|
|
1011
|
+
setConfig: (value: boolean | null) => void;
|
|
1012
|
+
type: boolean | null;
|
|
1013
|
+
id: "is-production";
|
|
999
1014
|
}, noOpenOption: {
|
|
1000
1015
|
name: string;
|
|
1001
1016
|
cliFlag: "no-open";
|
|
@@ -1110,16 +1125,16 @@ export type CommandLineOptions = {
|
|
|
1110
1125
|
[x264Option.cliFlag]: TypeOfOption<typeof x264Option>;
|
|
1111
1126
|
[bundleCacheOption.cliFlag]: TypeOfOption<typeof bundleCacheOption>;
|
|
1112
1127
|
[envFileOption.cliFlag]: TypeOfOption<typeof envFileOption>;
|
|
1113
|
-
[ignoreCertificateErrorsOption.cliFlag]: TypeOfOption<typeof ignoreCertificateErrorsOption
|
|
1114
|
-
[darkModeOption.cliFlag]: TypeOfOption<typeof darkModeOption
|
|
1115
|
-
[disableWebSecurityOption.cliFlag]: TypeOfOption<typeof disableWebSecurityOption
|
|
1128
|
+
[ignoreCertificateErrorsOption.cliFlag]: TypeOfOption<typeof ignoreCertificateErrorsOption> | null;
|
|
1129
|
+
[darkModeOption.cliFlag]: TypeOfOption<typeof darkModeOption> | null;
|
|
1130
|
+
[disableWebSecurityOption.cliFlag]: TypeOfOption<typeof disableWebSecurityOption> | null;
|
|
1116
1131
|
[everyNthFrameOption.cliFlag]: TypeOfOption<typeof everyNthFrameOption>;
|
|
1117
1132
|
[numberOfGifLoopsOption.cliFlag]: TypeOfOption<typeof numberOfGifLoopsOption>;
|
|
1118
1133
|
[numberOfSharedAudioTagsOption.cliFlag]: TypeOfOption<typeof numberOfSharedAudioTagsOption>;
|
|
1119
1134
|
[offthreadVideoCacheSizeInBytesOption.cliFlag]: TypeOfOption<typeof offthreadVideoCacheSizeInBytesOption>;
|
|
1120
1135
|
[colorSpaceOption.cliFlag]: TypeOfOption<typeof colorSpaceOption>;
|
|
1121
|
-
[disallowParallelEncodingOption.cliFlag]: TypeOfOption<typeof disallowParallelEncodingOption
|
|
1122
|
-
[beepOnFinishOption.cliFlag]: TypeOfOption<typeof beepOnFinishOption
|
|
1136
|
+
[disallowParallelEncodingOption.cliFlag]: TypeOfOption<typeof disallowParallelEncodingOption> | null;
|
|
1137
|
+
[beepOnFinishOption.cliFlag]: TypeOfOption<typeof beepOnFinishOption> | null;
|
|
1123
1138
|
[versionFlagOption.cliFlag]: TypeOfOption<typeof versionFlagOption>;
|
|
1124
1139
|
[videoCodecOption.cliFlag]: TypeOfOption<typeof videoCodecOption>;
|
|
1125
1140
|
[concurrencyOption.cliFlag]: TypeOfOption<typeof concurrencyOption>;
|
|
@@ -1135,22 +1150,22 @@ export type CommandLineOptions = {
|
|
|
1135
1150
|
[crfOption.cliFlag]: TypeOfOption<typeof crfOption>;
|
|
1136
1151
|
[gopSizeOption.cliFlag]: TypeOfOption<typeof gopSizeOption>;
|
|
1137
1152
|
output: string | undefined;
|
|
1138
|
-
[overwriteOption.cliFlag]: TypeOfOption<typeof overwriteOption
|
|
1153
|
+
[overwriteOption.cliFlag]: TypeOfOption<typeof overwriteOption> | null;
|
|
1139
1154
|
png: boolean;
|
|
1140
1155
|
[propsOption.cliFlag]: TypeOfOption<typeof propsOption>;
|
|
1141
1156
|
quality: number;
|
|
1142
1157
|
[jpegQualityOption.cliFlag]: TypeOfOption<typeof jpegQualityOption>;
|
|
1143
1158
|
[framesOption.cliFlag]: string | number;
|
|
1144
1159
|
[scaleOption.cliFlag]: TypeOfOption<typeof scaleOption>;
|
|
1145
|
-
[imageSequenceOption.cliFlag]: TypeOfOption<typeof imageSequenceOption
|
|
1160
|
+
[imageSequenceOption.cliFlag]: TypeOfOption<typeof imageSequenceOption> | null;
|
|
1146
1161
|
quiet: boolean;
|
|
1147
1162
|
q: boolean;
|
|
1148
1163
|
[logLevelOption.cliFlag]: TypeOfOption<typeof logLevelOption>;
|
|
1149
1164
|
help: boolean;
|
|
1150
1165
|
[portOption.cliFlag]: TypeOfOption<typeof portOption>;
|
|
1151
1166
|
[stillFrameOption.cliFlag]: TypeOfOption<typeof stillFrameOption>;
|
|
1152
|
-
[headlessOption.cliFlag]: TypeOfOption<typeof headlessOption
|
|
1153
|
-
[keyboardShortcutsOption.cliFlag]: TypeOfOption<typeof keyboardShortcutsOption
|
|
1167
|
+
[headlessOption.cliFlag]: TypeOfOption<typeof headlessOption> | null;
|
|
1168
|
+
[keyboardShortcutsOption.cliFlag]: TypeOfOption<typeof keyboardShortcutsOption> | null;
|
|
1154
1169
|
[allowHtmlInCanvasOption.cliFlag]: TypeOfOption<typeof allowHtmlInCanvasOption>;
|
|
1155
1170
|
[experimentalClientSideRenderingOption.cliFlag]: TypeOfOption<typeof experimentalClientSideRenderingOption>;
|
|
1156
1171
|
[mutedOption.cliFlag]: TypeOfOption<typeof mutedOption>;
|
|
@@ -1170,16 +1185,17 @@ export type CommandLineOptions = {
|
|
|
1170
1185
|
[userAgentOption.cliFlag]: TypeOfOption<typeof userAgentOption>;
|
|
1171
1186
|
[outDirOption.cliFlag]: TypeOfOption<typeof outDirOption>;
|
|
1172
1187
|
[audioLatencyHintOption.cliFlag]: AudioContextLatencyCategory;
|
|
1173
|
-
[ipv4Option.cliFlag]: TypeOfOption<typeof ipv4Option
|
|
1188
|
+
[ipv4Option.cliFlag]: TypeOfOption<typeof ipv4Option> | null;
|
|
1174
1189
|
[deleteAfterOption.cliFlag]: TypeOfOption<typeof deleteAfterOption>;
|
|
1175
1190
|
[folderExpiryOption.cliFlag]: TypeOfOption<typeof folderExpiryOption>;
|
|
1176
1191
|
[enableMultiprocessOnLinuxOption.cliFlag]: TypeOfOption<typeof enableMultiprocessOnLinuxOption>;
|
|
1177
|
-
[reproOption.cliFlag]: TypeOfOption<typeof reproOption
|
|
1192
|
+
[reproOption.cliFlag]: TypeOfOption<typeof reproOption> | null;
|
|
1178
1193
|
[imageSequencePatternOption.cliFlag]: TypeOfOption<typeof imageSequencePatternOption>;
|
|
1179
1194
|
'license-key': string;
|
|
1180
1195
|
[publicLicenseKeyOption.cliFlag]: string;
|
|
1181
|
-
[forceNewStudioOption.cliFlag]: TypeOfOption<typeof forceNewStudioOption
|
|
1196
|
+
[forceNewStudioOption.cliFlag]: TypeOfOption<typeof forceNewStudioOption> | null;
|
|
1182
1197
|
[sampleRateOption.cliFlag]: TypeOfOption<typeof sampleRateOption>;
|
|
1198
|
+
[isProductionOption.cliFlag]: TypeOfOption<typeof isProductionOption> | null;
|
|
1183
1199
|
};
|
|
1184
1200
|
export declare const BooleanFlags: string[];
|
|
1185
1201
|
export declare const parsedCli: CommandLineOptions & {
|
package/dist/parsed-cli.js
CHANGED
|
@@ -35,10 +35,22 @@ exports.BooleanFlags = [
|
|
|
35
35
|
exports.parsedCli = (0, minimist_1.default)(process.argv.slice(2), {
|
|
36
36
|
boolean: exports.BooleanFlags,
|
|
37
37
|
default: {
|
|
38
|
-
[overwriteOption.cliFlag]:
|
|
38
|
+
[overwriteOption.cliFlag]: null,
|
|
39
39
|
[bundleCacheOption.cliFlag]: null,
|
|
40
40
|
[allowHtmlInCanvasOption.cliFlag]: null,
|
|
41
41
|
[experimentalClientSideRenderingOption.cliFlag]: null,
|
|
42
|
+
[darkModeOption.cliFlag]: null,
|
|
43
|
+
[imageSequenceOption.cliFlag]: null,
|
|
44
|
+
[disableWebSecurityOption.cliFlag]: null,
|
|
45
|
+
[ignoreCertificateErrorsOption.cliFlag]: null,
|
|
46
|
+
[headlessOption.cliFlag]: null,
|
|
47
|
+
[keyboardShortcutsOption.cliFlag]: null,
|
|
48
|
+
[ipv4Option.cliFlag]: null,
|
|
49
|
+
[beepOnFinishOption.cliFlag]: null,
|
|
50
|
+
[disallowParallelEncodingOption.cliFlag]: null,
|
|
51
|
+
[reproOption.cliFlag]: null,
|
|
52
|
+
[isProductionOption.cliFlag]: null,
|
|
53
|
+
[forceNewStudioOption.cliFlag]: null,
|
|
42
54
|
[mutedOption.cliFlag]: null,
|
|
43
55
|
},
|
|
44
56
|
});
|
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.469",
|
|
7
7
|
"description": "Control Remotion features using the `npx remotion` command",
|
|
8
8
|
"main": "dist/index.js",
|
|
9
9
|
"bin": {
|
|
@@ -36,17 +36,17 @@
|
|
|
36
36
|
"author": "Jonny Burger <jonny@remotion.dev>",
|
|
37
37
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@remotion/bundler": "4.0.
|
|
40
|
-
"@remotion/media-utils": "4.0.
|
|
41
|
-
"@remotion/player": "4.0.
|
|
42
|
-
"@remotion/renderer": "4.0.
|
|
43
|
-
"@remotion/studio-shared": "4.0.
|
|
44
|
-
"@remotion/studio-server": "4.0.
|
|
45
|
-
"@remotion/studio": "4.0.
|
|
39
|
+
"@remotion/bundler": "4.0.469",
|
|
40
|
+
"@remotion/media-utils": "4.0.469",
|
|
41
|
+
"@remotion/player": "4.0.469",
|
|
42
|
+
"@remotion/renderer": "4.0.469",
|
|
43
|
+
"@remotion/studio-shared": "4.0.469",
|
|
44
|
+
"@remotion/studio-server": "4.0.469",
|
|
45
|
+
"@remotion/studio": "4.0.469",
|
|
46
46
|
"dotenv": "17.3.1",
|
|
47
47
|
"minimist": "1.2.6",
|
|
48
48
|
"prompts": "2.4.2",
|
|
49
|
-
"remotion": "4.0.
|
|
49
|
+
"remotion": "4.0.469"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|
|
52
52
|
"react": ">=16.8.0",
|
|
@@ -57,14 +57,14 @@
|
|
|
57
57
|
"@types/prompts": "2.4.9",
|
|
58
58
|
"@types/prettier": "2.7.2",
|
|
59
59
|
"@types/node": "20.12.14",
|
|
60
|
-
"@remotion/zod-types": "4.0.
|
|
61
|
-
"@remotion/tailwind-v4": "4.0.
|
|
62
|
-
"@remotion/enable-scss": "4.0.
|
|
63
|
-
"@remotion/skia": "4.0.
|
|
60
|
+
"@remotion/zod-types": "4.0.469",
|
|
61
|
+
"@remotion/tailwind-v4": "4.0.469",
|
|
62
|
+
"@remotion/enable-scss": "4.0.469",
|
|
63
|
+
"@remotion/skia": "4.0.469",
|
|
64
64
|
"react": "19.2.3",
|
|
65
65
|
"react-dom": "19.2.3",
|
|
66
66
|
"zod": "4.3.6",
|
|
67
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
67
|
+
"@remotion/eslint-config-internal": "4.0.469",
|
|
68
68
|
"eslint": "9.19.0",
|
|
69
69
|
"@typescript/native-preview": "7.0.0-dev.20260217.1"
|
|
70
70
|
},
|