@remotion/lambda 4.0.258 → 4.0.260
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.
|
@@ -100,7 +100,11 @@ const sitesCreateSubcommand = async (args, remotionRoot, logLevel, implementatio
|
|
|
100
100
|
const disableGitSource = disableGitSourceOption.getValue({
|
|
101
101
|
commandLine: cli_1.CliInternals.parsedCli,
|
|
102
102
|
}).value;
|
|
103
|
-
const gitSource = cli_1.CliInternals.getGitSource({
|
|
103
|
+
const gitSource = cli_1.CliInternals.getGitSource({
|
|
104
|
+
remotionRoot,
|
|
105
|
+
disableGitSource,
|
|
106
|
+
logLevel,
|
|
107
|
+
});
|
|
104
108
|
const { serveUrl, siteName, stats } = await internals_1.LambdaInternals.internalDeploySite({
|
|
105
109
|
entryPoint: file,
|
|
106
110
|
siteName: desiredSiteName !== null && desiredSiteName !== void 0 ? desiredSiteName : implementation.randomHash(),
|
package/dist/cli/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
|
+
}, message?: any, ...optionalParams: any[]) => 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
|
+
}, 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
|
-
}, ...
|
|
12
|
+
}, message?: any, ...optionalParams: any[]) => boolean | void;
|
|
13
13
|
};
|
package/dist/io/write-file.js
CHANGED
|
@@ -43,7 +43,7 @@ const lambdaWriteFileImplementation = async (params) => {
|
|
|
43
43
|
await new Promise((resolve) => {
|
|
44
44
|
setTimeout(resolve, backoff);
|
|
45
45
|
});
|
|
46
|
-
console.warn('Failed to write file to
|
|
46
|
+
console.warn('Failed to write file to storage:');
|
|
47
47
|
console.warn(err);
|
|
48
48
|
console.warn(`Retrying (${remainingRetries} retries remaining)...`);
|
|
49
49
|
return (0, exports.lambdaWriteFileImplementation)({
|
|
@@ -99,6 +99,7 @@ const getServiceClient = ({ region, service, customCredentials, forcePathStyle,
|
|
|
99
99
|
: undefined,
|
|
100
100
|
endpoint: customCredentials.endpoint,
|
|
101
101
|
requestHandler: lambdaOptions,
|
|
102
|
+
forcePathStyle: customCredentials.forcePathStyle,
|
|
102
103
|
})
|
|
103
104
|
: (0, get_env_variable_1.getEnvVariable)('REMOTION_SKIP_AWS_CREDENTIALS_CHECK')
|
|
104
105
|
? new Client({
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"url": "https://github.com/remotion-dev/remotion/tree/main/packages/lambda"
|
|
4
4
|
},
|
|
5
5
|
"name": "@remotion/lambda",
|
|
6
|
-
"version": "4.0.
|
|
6
|
+
"version": "4.0.260",
|
|
7
7
|
"description": "Render Remotion videos on AWS Lambda",
|
|
8
8
|
"main": "dist/index.js",
|
|
9
9
|
"sideEffects": false,
|
|
@@ -22,13 +22,12 @@
|
|
|
22
22
|
"@smithy/abort-controller": "3.1.1",
|
|
23
23
|
"mime-types": "2.1.34",
|
|
24
24
|
"zod": "3.22.3",
|
|
25
|
-
"@remotion/
|
|
26
|
-
"@remotion/bundler": "4.0.
|
|
27
|
-
"@remotion/
|
|
28
|
-
"@remotion/serverless": "4.0.
|
|
29
|
-
"
|
|
30
|
-
"@remotion/
|
|
31
|
-
"remotion": "4.0.258"
|
|
25
|
+
"@remotion/renderer": "4.0.260",
|
|
26
|
+
"@remotion/bundler": "4.0.260",
|
|
27
|
+
"@remotion/streaming": "4.0.260",
|
|
28
|
+
"@remotion/serverless": "4.0.260",
|
|
29
|
+
"remotion": "4.0.260",
|
|
30
|
+
"@remotion/cli": "4.0.260"
|
|
32
31
|
},
|
|
33
32
|
"devDependencies": {
|
|
34
33
|
"@types/express": "^5.0.0",
|
|
@@ -36,16 +35,16 @@
|
|
|
36
35
|
"@types/mime-types": "2.1.1",
|
|
37
36
|
"@types/minimist": "1.2.2",
|
|
38
37
|
"@types/prompt": "^1.1.0",
|
|
39
|
-
"eslint": "9.
|
|
40
|
-
"next": "15.1.
|
|
38
|
+
"eslint": "9.19.0",
|
|
39
|
+
"next": "15.1.6",
|
|
41
40
|
"pureimage": "0.4.13",
|
|
42
41
|
"zip-lib": "^0.7.2",
|
|
43
|
-
"@remotion/
|
|
44
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
45
|
-
"@remotion/
|
|
42
|
+
"@remotion/bundler": "4.0.260",
|
|
43
|
+
"@remotion/eslint-config-internal": "4.0.260",
|
|
44
|
+
"@remotion/compositor-linux-arm64-gnu": "4.0.260"
|
|
46
45
|
},
|
|
47
46
|
"peerDependencies": {
|
|
48
|
-
"@remotion/bundler": "4.0.
|
|
47
|
+
"@remotion/bundler": "4.0.260"
|
|
49
48
|
},
|
|
50
49
|
"publishConfig": {
|
|
51
50
|
"access": "public"
|
package/remotionlambda-arm64.zip
CHANGED
|
Binary file
|