@remotion/cloudrun 4.0.172 → 4.0.174
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
CHANGED
|
@@ -134,7 +134,7 @@ ${downloadName ? ` Downloaded File = ${downloadName}` : ''}
|
|
|
134
134
|
const updateProgress = () => {
|
|
135
135
|
progressBar.update([
|
|
136
136
|
`Rendering on Cloud Run: `,
|
|
137
|
-
cli_1.CliInternals.makeProgressBar(renderProgress.progress),
|
|
137
|
+
cli_1.CliInternals.makeProgressBar(renderProgress.progress, false),
|
|
138
138
|
`${renderProgress.doneIn === null ? 'Rendering' : 'Rendered'}`,
|
|
139
139
|
renderProgress.doneIn === null
|
|
140
140
|
? `${Math.round(renderProgress.progress * 100)}%`
|
|
@@ -6,7 +6,7 @@ const remotion_1 = require("remotion");
|
|
|
6
6
|
const makeBundleProgress = ({ progress, doneIn }) => {
|
|
7
7
|
return [
|
|
8
8
|
`${doneIn === null ? 'Bundling' : 'Bundled'} video`.padEnd(cli_1.CliInternals.LABEL_WIDTH, ' '),
|
|
9
|
-
cli_1.CliInternals.makeProgressBar(progress / 100),
|
|
9
|
+
cli_1.CliInternals.makeProgressBar(progress / 100, false),
|
|
10
10
|
doneIn === null
|
|
11
11
|
? `${Math.round(progress)}%`
|
|
12
12
|
: cli_1.CliInternals.chalk.gray(`${doneIn}ms`),
|
|
@@ -38,7 +38,7 @@ const makeBucketProgress = ({ creationState, doneIn, }) => {
|
|
|
38
38
|
}
|
|
39
39
|
return [
|
|
40
40
|
creationState.padEnd(cli_1.CliInternals.LABEL_WIDTH, ' '),
|
|
41
|
-
cli_1.CliInternals.makeProgressBar(progress),
|
|
41
|
+
cli_1.CliInternals.makeProgressBar(progress, false),
|
|
42
42
|
doneIn === null
|
|
43
43
|
? `${statesFinished} / ${3}`
|
|
44
44
|
: cli_1.CliInternals.chalk.gray(`${doneIn}ms`),
|
|
@@ -64,7 +64,7 @@ const makeDeployProgressBar = ({ sizeUploaded, totalSize, doneIn, stats, }) => {
|
|
|
64
64
|
const progress = totalSize === null ? 0 : sizeUploaded / totalSize;
|
|
65
65
|
return [
|
|
66
66
|
`${doneIn === null ? 'Uploading' : 'Uploaded'}`.padEnd(cli_1.CliInternals.LABEL_WIDTH, ' '),
|
|
67
|
-
cli_1.CliInternals.makeProgressBar(progress),
|
|
67
|
+
cli_1.CliInternals.makeProgressBar(progress, false),
|
|
68
68
|
doneIn === null
|
|
69
69
|
? typeof totalSize === 'number'
|
|
70
70
|
? `${cli_1.CliInternals.formatBytes(sizeUploaded)}/${cli_1.CliInternals.formatBytes(totalSize)}`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remotion/cloudrun",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.174",
|
|
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/
|
|
17
|
-
"remotion": "4.0.
|
|
18
|
-
"
|
|
15
|
+
"@remotion/bundler": "4.0.174",
|
|
16
|
+
"@remotion/cli": "4.0.174",
|
|
17
|
+
"@remotion/renderer": "4.0.174",
|
|
18
|
+
"remotion": "4.0.174"
|
|
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.174"
|
|
30
30
|
},
|
|
31
31
|
"exports": {
|
|
32
32
|
"./package.json": "./package.json",
|
package/.turbo/turbo-test.log
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
> @remotion/cloudrun@4.0.163 test /Users/jonathanburger/remotion/packages/cloudrun
|
|
3
|
-
> vitest --run
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
[7m[1m[36m RUN [39m[22m[27m [36mv0.31.1[39m [90m/Users/jonathanburger/remotion/packages/cloudrun[39m
|
|
7
|
-
|
|
8
|
-
[?25l [32m✓[39m [2msrc/api/test/[22mservice-names[2m.test.ts[22m[2m (1)[22m
|
|
9
|
-
[32m✓[39m [2msrc/api/test/[22mmake-console[2m.test.ts[22m[2m (2)[22m
|
|
10
|
-
[32m✓[39m [2msrc/api/test/[22mrunning-in-what-server[2m.test.ts[22m[2m (4)[22m
|
|
11
|
-
[2K[1A[2K[1A[2K[1A[2K[G [32m✓[39m [2msrc/api/test/[22mservice-names[2m.test.ts[22m[2m (1)[22m
|
|
12
|
-
[32m✓[39m [2msrc/api/test/[22mmake-console[2m.test.ts[22m[2m (2)[22m
|
|
13
|
-
[32m✓[39m [2msrc/api/test/[22mrunning-in-what-server[2m.test.ts[22m[2m (4)[22m
|
|
14
|
-
|
|
15
|
-
[2m Test Files [22m [1m[32m3 passed[39m[22m[90m (3)[39m
|
|
16
|
-
[2m Tests [22m [1m[32m7 passed[39m[22m[90m (7)[39m
|
|
17
|
-
[2m Start at [22m 19:38:46
|
|
18
|
-
[2m Duration [22m 887ms[2m (transform 278ms, setup 0ms, collect 429ms, tests 5ms, environment 0ms, prepare 109ms)[22m
|
|
19
|
-
|
|
20
|
-
[?25h
|