@remotion/cloudrun 4.0.259 → 4.0.261

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.
@@ -1,6 +1,6 @@
1
1
 
2
2
  
3
- > @remotion/cloudrun@4.0.258 make /Users/jonathanburger/remotion/packages/cloudrun
3
+ > @remotion/cloudrun@4.0.261 make /Users/jonathanburger/remotion/packages/cloudrun
4
4
  > tsc -d && bun build.ts
5
5
 
6
- [14.61ms] Made reproducible build with gtar
6
+ [5.05ms] Made reproducible build with gtar
@@ -91,7 +91,11 @@ const sitesCreateSubcommand = async (args, remotionRoot, logLevel) => {
91
91
  const disableGitSource = client_1.BrowserSafeApis.options.disableGitSourceOption.getValue({
92
92
  commandLine: cli_1.CliInternals.parsedCli,
93
93
  }).value;
94
- const gitSource = cli_1.CliInternals.getGitSource({ remotionRoot, disableGitSource });
94
+ const gitSource = cli_1.CliInternals.getGitSource({
95
+ remotionRoot,
96
+ disableGitSource,
97
+ logLevel,
98
+ });
95
99
  const { serveUrl, siteName, stats } = await (0, deploy_site_1.internalDeploySiteRaw)({
96
100
  entryPoint: file,
97
101
  siteName: desiredSiteName,
package/dist/cli/log.d.ts CHANGED
@@ -1,13 +1,13 @@
1
1
  export declare const Log: {
2
2
  trace: (options: import("@remotion/renderer/dist/logger").LogOptions & {
3
3
  tag?: string;
4
- }, message?: any, ...optionalParams: any[]) => boolean | void;
4
+ }, ...args: Parameters<typeof console.log>) => boolean | void;
5
5
  verbose: (options: import("@remotion/renderer").LogOptions & {
6
6
  tag?: string;
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;
7
+ }, ...args: Parameters<typeof console.log>) => boolean | void;
8
+ info: (options: import("@remotion/renderer").LogOptions, ...args: Parameters<typeof console.log>) => boolean | void;
9
+ warn: (options: import("@remotion/renderer").LogOptions, ...args: Parameters<typeof console.log>) => boolean | void;
10
10
  error: (options: import("@remotion/renderer").LogOptions & {
11
11
  tag?: string;
12
- }, message?: any, ...optionalParams: any[]) => boolean | void;
12
+ }, ...args: Parameters<typeof console.log>) => boolean | void;
13
13
  };
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "url": "https://github.com/remotion-dev/remotion/tree/main/packages/cloudrun"
4
4
  },
5
5
  "name": "@remotion/cloudrun",
6
- "version": "4.0.259",
6
+ "version": "4.0.261",
7
7
  "description": "Render Remotion videos on Google Cloud Run",
8
8
  "main": "dist/index.js",
9
9
  "sideEffects": false,
@@ -16,16 +16,16 @@
16
16
  "@google-cloud/logging": "^11.1.0",
17
17
  "google-auth-library": "^8.7.0",
18
18
  "zod": "3.22.3",
19
- "@remotion/cli": "4.0.259",
20
- "@remotion/renderer": "4.0.259",
21
- "@remotion/bundler": "4.0.259",
22
- "remotion": "4.0.259"
19
+ "@remotion/bundler": "4.0.261",
20
+ "@remotion/renderer": "4.0.261",
21
+ "remotion": "4.0.261",
22
+ "@remotion/cli": "4.0.261"
23
23
  },
24
24
  "devDependencies": {
25
25
  "@types/minimist": "1.2.2",
26
- "eslint": "9.14.0",
27
- "@remotion/eslint-config-internal": "4.0.259",
28
- "@remotion/compositor-linux-x64-gnu": "4.0.259"
26
+ "eslint": "9.19.0",
27
+ "@remotion/compositor-linux-x64-gnu": "4.0.261",
28
+ "@remotion/eslint-config-internal": "4.0.261"
29
29
  },
30
30
  "exports": {
31
31
  "./package.json": "./package.json",