@remotion/cloudrun 4.0.141 → 4.0.143
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/.turbo/turbo-build.log +4 -10
- package/build.ts +9 -0
- package/dist/api/render-still-on-cloudrun.js +1 -2
- package/dist/cli/log.d.ts +4 -4
- package/package.json +7 -7
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,14 +1,8 @@
|
|
|
1
1
|
|
|
2
|
-
> @remotion/cloudrun@4.0.
|
|
3
|
-
>
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
> @remotion/cloudrun@4.0.140 buildContainer /Users/jonathanburger/remotion/packages/cloudrun
|
|
7
|
-
> ts-node src/admin/bundle-renderLogic.ts
|
|
2
|
+
> @remotion/cloudrun@4.0.142 build /Users/jonathanburger/remotion/packages/cloudrun
|
|
3
|
+
> bun build.ts
|
|
8
4
|
|
|
5
|
+
$ ts-node src/admin/bundle-renderLogic.ts
|
|
9
6
|
distribution bundled.
|
|
10
|
-
|
|
11
|
-
> @remotion/cloudrun@4.0.140 tarInstaller /Users/jonathanburger/remotion/packages/cloudrun
|
|
12
|
-
> ts-node src/admin/bundle-installer.ts
|
|
13
|
-
|
|
7
|
+
$ ts-node src/admin/bundle-installer.ts
|
|
14
8
|
Making reproducible build with gtar
|
package/build.ts
ADDED
|
@@ -5,7 +5,6 @@ const client_1 = require("@remotion/renderer/client");
|
|
|
5
5
|
const pure_1 = require("@remotion/renderer/pure");
|
|
6
6
|
const no_react_1 = require("remotion/no-react");
|
|
7
7
|
const version_1 = require("remotion/version");
|
|
8
|
-
const defaults_1 = require("../defaults");
|
|
9
8
|
const validate_privacy_1 = require("../shared/validate-privacy");
|
|
10
9
|
const validate_serveurl_1 = require("../shared/validate-serveurl");
|
|
11
10
|
const get_or_create_bucket_1 = require("./get-or-create-bucket");
|
|
@@ -133,7 +132,7 @@ const renderStillOnCloudrun = (options) => {
|
|
|
133
132
|
chromiumOptions: (_a = options.chromiumOptions) !== null && _a !== void 0 ? _a : {},
|
|
134
133
|
cloudRunUrl: (_b = options.cloudRunUrl) !== null && _b !== void 0 ? _b : null,
|
|
135
134
|
composition: options.composition,
|
|
136
|
-
delayRenderTimeoutInMilliseconds: (_c = options.delayRenderTimeoutInMilliseconds) !== null && _c !== void 0 ? _c :
|
|
135
|
+
delayRenderTimeoutInMilliseconds: (_c = options.delayRenderTimeoutInMilliseconds) !== null && _c !== void 0 ? _c : 30000,
|
|
137
136
|
envVariables: (_d = options.envVariables) !== null && _d !== void 0 ? _d : {},
|
|
138
137
|
forceBucketName: (_e = options.forceBucketName) !== null && _e !== void 0 ? _e : null,
|
|
139
138
|
forceHeight: (_f = options.forceHeight) !== null && _f !== void 0 ? _f : null,
|
package/dist/cli/log.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
export declare const Log: {
|
|
2
2
|
verbose: (options: import("@remotion/renderer").LogOptions & {
|
|
3
3
|
tag?: string | undefined;
|
|
4
|
-
},
|
|
5
|
-
info: (options: import("@remotion/renderer").LogOptions,
|
|
6
|
-
warn: (options: import("@remotion/renderer").LogOptions,
|
|
4
|
+
}, ...args: any[]) => void;
|
|
5
|
+
info: (options: import("@remotion/renderer").LogOptions, ...args: any[]) => void;
|
|
6
|
+
warn: (options: import("@remotion/renderer").LogOptions, ...args: any[]) => void;
|
|
7
7
|
error: (options: import("@remotion/renderer").LogOptions & {
|
|
8
8
|
tag?: string | undefined;
|
|
9
|
-
},
|
|
9
|
+
}, ...args: any[]) => void;
|
|
10
10
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remotion/cloudrun",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.143",
|
|
4
4
|
"description": "GCP Cloud Run alternative to lambda rendering",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"dependencies": {
|
|
@@ -12,10 +12,10 @@
|
|
|
12
12
|
"@google-cloud/logging": "^10.5.0",
|
|
13
13
|
"google-auth-library": "^8.7.0",
|
|
14
14
|
"zod": "^3.22.3",
|
|
15
|
-
"@remotion/bundler": "4.0.
|
|
16
|
-
"@remotion/cli": "4.0.
|
|
17
|
-
"remotion": "4.0.
|
|
18
|
-
"
|
|
15
|
+
"@remotion/bundler": "4.0.143",
|
|
16
|
+
"@remotion/cli": "4.0.143",
|
|
17
|
+
"@remotion/renderer": "4.0.143",
|
|
18
|
+
"remotion": "4.0.143"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"@jonny/eslint-config": "3.0.281",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"prettier-plugin-organize-imports": "^3.2.4",
|
|
27
27
|
"ts-node": "10.9.2",
|
|
28
28
|
"vitest": "0.31.1",
|
|
29
|
-
"@remotion/compositor-linux-x64-gnu": "4.0.
|
|
29
|
+
"@remotion/compositor-linux-x64-gnu": "4.0.143"
|
|
30
30
|
},
|
|
31
31
|
"exports": {
|
|
32
32
|
"./package.json": "./package.json",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
}
|
|
51
51
|
},
|
|
52
52
|
"scripts": {
|
|
53
|
-
"build": "
|
|
53
|
+
"build": "bun build.ts",
|
|
54
54
|
"buildContainer": "ts-node src/admin/bundle-renderLogic.ts",
|
|
55
55
|
"tarInstaller": "ts-node src/admin/bundle-installer.ts",
|
|
56
56
|
"watch": "tsc -w",
|