@remotion/cloudrun 4.0.25 → 4.0.27

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,13 +1,13 @@
1
1
 
2
- > @remotion/cloudrun@4.0.24 build /Users/jonathanburger/remotion/packages/cloudrun
2
+ > @remotion/cloudrun@4.0.26 build /Users/jonathanburger/remotion/packages/cloudrun
3
3
  > tsc -d && cp src/shared/sa-permissions.json dist/shared/sa-permissions.json && pnpm run buildContainer && pnpm run tarInstaller
4
4
 
5
5
 
6
- > @remotion/cloudrun@4.0.24 buildContainer /Users/jonathanburger/remotion/packages/cloudrun
6
+ > @remotion/cloudrun@4.0.26 buildContainer /Users/jonathanburger/remotion/packages/cloudrun
7
7
  > ts-node src/admin/bundle-renderLogic.ts
8
8
 
9
9
  distribution bundled.
10
10
 
11
- > @remotion/cloudrun@4.0.24 tarInstaller /Users/jonathanburger/remotion/packages/cloudrun
11
+ > @remotion/cloudrun@4.0.26 tarInstaller /Users/jonathanburger/remotion/packages/cloudrun
12
12
  > ts-node src/admin/bundle-installer.ts
13
13
 
@@ -25,4 +25,4 @@ export type DeployServiceOutput = {
25
25
  * @param params.region GCP region to deploy the Cloud Run service to.
26
26
  * @returns {Promise<DeployServiceOutput>} See documentation for detailed structure
27
27
  */
28
- export declare const deployService: ({ performImageVersionValidation, memoryLimit, cpuLimit, timeoutSeconds, minInstances, maxInstances, projectID, region, }: DeployServiceInput) => Promise<DeployServiceOutput>;
28
+ export declare const deployService: (args_0: DeployServiceInput) => Promise<DeployServiceOutput>;
@@ -1,6 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.deployService = void 0;
4
+ const pure_1 = require("@remotion/renderer/pure");
4
5
  const constants_1 = require("../shared/constants");
5
6
  const generate_service_name_1 = require("../shared/generate-service-name");
6
7
  const validate_gcp_region_1 = require("../shared/validate-gcp-region");
@@ -9,18 +10,7 @@ const validate_project_id_1 = require("../shared/validate-project-id");
9
10
  const check_if_service_exists_1 = require("./check-if-service-exists");
10
11
  const construct_service_deploy_request_1 = require("./helpers/construct-service-deploy-request");
11
12
  const get_cloud_run_client_1 = require("./helpers/get-cloud-run-client");
12
- /**
13
- * @description Creates a Cloud Run service in your project that will be able to render a video in GCP.
14
- * @link https://remotion.dev/docs/cloudrun/deployservice
15
- * @param params.performImageVersionValidation Validate that an image exists in the public Artifact Registry that matches the Remotion Version. Default true
16
- * @param params.memoryLimit Memory limit of Cloud Run service to deploy.
17
- * @param params.cpuLimit CPU limit of Cloud Run service to deploy.
18
- * @param params.timeoutSeconds After how many seconds the Cloud Run service should be killed if it does not end itself.
19
- * @param params.projectID GCP Project ID to deploy the Cloud Run service to.
20
- * @param params.region GCP region to deploy the Cloud Run service to.
21
- * @returns {Promise<DeployServiceOutput>} See documentation for detailed structure
22
- */
23
- const deployService = async ({ performImageVersionValidation = true, memoryLimit, cpuLimit, timeoutSeconds, minInstances, maxInstances, projectID, region, }) => {
13
+ const deployServiceRaw = async ({ performImageVersionValidation = true, memoryLimit, cpuLimit, timeoutSeconds, minInstances, maxInstances, projectID, region, }) => {
24
14
  (0, validate_gcp_region_1.validateGcpRegion)(region);
25
15
  (0, validate_project_id_1.validateProjectID)(projectID);
26
16
  if (performImageVersionValidation) {
@@ -87,4 +77,15 @@ const deployService = async ({ performImageVersionValidation = true, memoryLimit
87
77
  alreadyExists: false,
88
78
  };
89
79
  };
90
- exports.deployService = deployService;
80
+ /**
81
+ * @description Creates a Cloud Run service in your project that will be able to render a video in GCP.
82
+ * @link https://remotion.dev/docs/cloudrun/deployservice
83
+ * @param params.performImageVersionValidation Validate that an image exists in the public Artifact Registry that matches the Remotion Version. Default true
84
+ * @param params.memoryLimit Memory limit of Cloud Run service to deploy.
85
+ * @param params.cpuLimit CPU limit of Cloud Run service to deploy.
86
+ * @param params.timeoutSeconds After how many seconds the Cloud Run service should be killed if it does not end itself.
87
+ * @param params.projectID GCP Project ID to deploy the Cloud Run service to.
88
+ * @param params.region GCP region to deploy the Cloud Run service to.
89
+ * @returns {Promise<DeployServiceOutput>} See documentation for detailed structure
90
+ */
91
+ exports.deployService = pure_1.PureJSAPIs.wrapWithErrorHandling(deployServiceRaw);
@@ -32,4 +32,12 @@ export type DeploySiteOutput = Promise<{
32
32
  * @param {string} params.siteName The name of the folder in which the project gets deployed to.
33
33
  * @param {object} params.options Further options, see documentation page for this function.
34
34
  */
35
- export declare const deploySite: ({ entryPoint, bucketName, siteName, options, }: DeploySiteInput) => DeploySiteOutput;
35
+ export declare const deploySite: (args_0: DeploySiteInput) => Promise<{
36
+ serveUrl: string;
37
+ siteName: string;
38
+ stats: {
39
+ uploadedFiles: number;
40
+ deletedFiles: number;
41
+ untouchedFiles: number;
42
+ };
43
+ }>;
@@ -1,6 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.deploySite = void 0;
4
+ const pure_1 = require("@remotion/renderer/pure");
4
5
  const io_1 = require("../functions/helpers/io");
5
6
  const bundle_site_1 = require("../shared/bundle-site");
6
7
  const constants_1 = require("../shared/constants");
@@ -11,15 +12,7 @@ const validate_bucketname_1 = require("../shared/validate-bucketname");
11
12
  const validate_site_name_1 = require("../shared/validate-site-name");
12
13
  const get_cloud_storage_client_1 = require("./helpers/get-cloud-storage-client");
13
14
  const upload_dir_1 = require("./upload-dir");
14
- /**
15
- * @description Deploys a Remotion project to a GCP storage bucket to prepare it for rendering on Cloud Run.
16
- * @link https://remotion.dev/docs/cloudrun/deploysite
17
- * @param {string} params.entryPoint An absolute path to the entry file of your Remotion project.
18
- * @param {string} params.bucketName The name of the bucket to deploy your project into.
19
- * @param {string} params.siteName The name of the folder in which the project gets deployed to.
20
- * @param {object} params.options Further options, see documentation page for this function.
21
- */
22
- const deploySite = async ({ entryPoint, bucketName, siteName, options, }) => {
15
+ const deploySiteRaw = async ({ entryPoint, bucketName, siteName, options, }) => {
23
16
  var _a, _b, _c, _d;
24
17
  (0, validate_bucketname_1.validateBucketName)(bucketName, { mustStartWithRemotion: true });
25
18
  const siteId = siteName !== null && siteName !== void 0 ? siteName : (0, random_hash_1.randomHash)();
@@ -75,4 +68,12 @@ const deploySite = async ({ entryPoint, bucketName, siteName, options, }) => {
75
68
  },
76
69
  };
77
70
  };
78
- exports.deploySite = deploySite;
71
+ /**
72
+ * @description Deploys a Remotion project to a GCP storage bucket to prepare it for rendering on Cloud Run.
73
+ * @link https://remotion.dev/docs/cloudrun/deploysite
74
+ * @param {string} params.entryPoint An absolute path to the entry file of your Remotion project.
75
+ * @param {string} params.bucketName The name of the bucket to deploy your project into.
76
+ * @param {string} params.siteName The name of the folder in which the project gets deployed to.
77
+ * @param {object} params.options Further options, see documentation page for this function.
78
+ */
79
+ exports.deploySite = pure_1.PureJSAPIs.wrapWithErrorHandling(deploySiteRaw);
@@ -2,6 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.renderMediaOnCloudrun = void 0;
4
4
  const renderer_1 = require("@remotion/renderer");
5
+ const pure_1 = require("@remotion/renderer/pure");
5
6
  const remotion_1 = require("remotion");
6
7
  const validate_gcp_codec_1 = require("../shared/validate-gcp-codec");
7
8
  const validate_privacy_1 = require("../shared/validate-privacy");
@@ -9,46 +10,7 @@ const validate_serveurl_1 = require("../shared/validate-serveurl");
9
10
  const get_or_create_bucket_1 = require("./get-or-create-bucket");
10
11
  const get_auth_client_for_url_1 = require("./helpers/get-auth-client-for-url");
11
12
  const get_cloudrun_endpoint_1 = require("./helpers/get-cloudrun-endpoint");
12
- /**
13
- * @description Triggers a render on a GCP Cloud Run service given a composition and a Cloud Run URL.
14
- * @see [Documentation](https://remotion.dev/docs/cloudrun/renderMediaOnGcp)
15
- * @param params.cloudRunUrl The URL of the Cloud Run service that should be used. Use either this or serviceName.
16
- * @param params.serviceName The name of the Cloud Run service that should be used. Use either this or cloudRunUrl.
17
- * @param params.region The region that the Cloud Run service is deployed in.
18
- * @param params.serveUrl The URL of the deployed project
19
- * @param params.composition The ID of the composition which should be rendered.
20
- * @param params.inputProps The input props that should be passed to the composition.
21
- * @param params.codec The media codec which should be used for encoding.
22
- * @param params.forceBucketName The name of the bucket that the output file should be uploaded to.
23
- * @param params.privacy Whether the output file should be public or private.
24
- * @param params.outputFile The name of the output file.
25
- * @param params.updateRenderProgress A callback that is called with the progress of the render.
26
- * @param params.jpegQuality JPEG quality if JPEG was selected as the image format.
27
- * @param params.audioCodec The encoding of the audio of the output video.
28
- * @param params.audioBitrate The target bitrate for the audio of the generated video.
29
- * @param params.videoBitrate The target bitrate of the generated video.
30
- * @param params.proResProfile Sets a ProRes profile. Only applies to videos rendered with prores codec.
31
- * @param params.x264Preset Sets a Preset profile. Only applies to videos rendered with h.264 codec.
32
- * @param params.crf Constant Rate Factor, controlling the quality.
33
- * @param params.pixelFormat Custom pixel format to use. Usually used for special use cases like transparent videos.
34
- * @param params.imageFormat Which image format the frames should be rendered in.
35
- * @param params.scale Scales the output dimensions by a factor.
36
- * @param params.everyNthFrame Only used if rendering gigs - renders only every nth frame.
37
- * @param params.numberOfGifLoops Only used if rendering gigs - how many times the gif should loop. Null means infinite.
38
- * @param params.frameRange Specify a single frame (a number) or a range of frames (a tuple [number, number]) to be rendered.
39
- * @param params.envVariables Object containing environment variables to be injected in your project.
40
- * @param params.chromiumOptions Allows you to set certain Chromium / Google Chrome flags.
41
- * @param params.muted If set to true, no audio is rendered.
42
- * @param params.forceWidth Overrides default composition width.
43
- * @param params.forceHeight Overrides default composition height.
44
- * @param params.logLevel Level of logging that Cloud Run service should perform. Default "info".
45
- * @param params.delayRenderTimeoutInMilliseconds A number describing how long the render may take to resolve all delayRender() calls before it times out.
46
- * @param params.concurrency By default, each Cloud Run service renders with concurrency 100% (equal to number of available cores). You may use the option to customize this value.
47
- * @param params.enforceAudioTrack Render a silent audio track if there wouldn't be any otherwise.
48
- * @param params.preferLossless Uses a lossless audio codec, if one is available for the codec. If you set audioCodec, it takes priority over preferLossless.
49
- * @returns {Promise<RenderMediaOnCloudrunOutput>} See documentation for detailed structure
50
- */
51
- const renderMediaOnCloudrun = async ({ cloudRunUrl, serviceName, region, serveUrl, composition, inputProps, codec, forceBucketName, privacy, outName, updateRenderProgress, jpegQuality, audioCodec, audioBitrate, videoBitrate, proResProfile, x264Preset, crf, pixelFormat, imageFormat, scale, everyNthFrame, numberOfGifLoops, frameRange, envVariables, chromiumOptions, muted, forceWidth, forceHeight, logLevel, delayRenderTimeoutInMilliseconds, concurrency, enforceAudioTrack, preferLossless, offthreadVideoCacheSizeInBytes, }) => {
13
+ const renderMediaOnCloudrunRaw = async ({ cloudRunUrl, serviceName, region, serveUrl, composition, inputProps, codec, forceBucketName, privacy, outName, updateRenderProgress, jpegQuality, audioCodec, audioBitrate, videoBitrate, proResProfile, x264Preset, crf, pixelFormat, imageFormat, scale, everyNthFrame, numberOfGifLoops, frameRange, envVariables, chromiumOptions, muted, forceWidth, forceHeight, logLevel, delayRenderTimeoutInMilliseconds, concurrency, enforceAudioTrack, preferLossless, offthreadVideoCacheSizeInBytes, }) => {
52
14
  const actualCodec = (0, validate_gcp_codec_1.validateCloudrunCodec)(codec);
53
15
  (0, validate_serveurl_1.validateServeUrl)(serveUrl);
54
16
  if (privacy)
@@ -158,4 +120,43 @@ const renderMediaOnCloudrun = async ({ cloudRunUrl, serviceName, region, serveUr
158
120
  });
159
121
  return renderResponse;
160
122
  };
161
- exports.renderMediaOnCloudrun = renderMediaOnCloudrun;
123
+ /**
124
+ * @description Triggers a render on a GCP Cloud Run service given a composition and a Cloud Run URL.
125
+ * @see [Documentation](https://remotion.dev/docs/cloudrun/renderMediaOnGcp)
126
+ * @param params.cloudRunUrl The URL of the Cloud Run service that should be used. Use either this or serviceName.
127
+ * @param params.serviceName The name of the Cloud Run service that should be used. Use either this or cloudRunUrl.
128
+ * @param params.region The region that the Cloud Run service is deployed in.
129
+ * @param params.serveUrl The URL of the deployed project
130
+ * @param params.composition The ID of the composition which should be rendered.
131
+ * @param params.inputProps The input props that should be passed to the composition.
132
+ * @param params.codec The media codec which should be used for encoding.
133
+ * @param params.forceBucketName The name of the bucket that the output file should be uploaded to.
134
+ * @param params.privacy Whether the output file should be public or private.
135
+ * @param params.outputFile The name of the output file.
136
+ * @param params.updateRenderProgress A callback that is called with the progress of the render.
137
+ * @param params.jpegQuality JPEG quality if JPEG was selected as the image format.
138
+ * @param params.audioCodec The encoding of the audio of the output video.
139
+ * @param params.audioBitrate The target bitrate for the audio of the generated video.
140
+ * @param params.videoBitrate The target bitrate of the generated video.
141
+ * @param params.proResProfile Sets a ProRes profile. Only applies to videos rendered with prores codec.
142
+ * @param params.x264Preset Sets a Preset profile. Only applies to videos rendered with h.264 codec.
143
+ * @param params.crf Constant Rate Factor, controlling the quality.
144
+ * @param params.pixelFormat Custom pixel format to use. Usually used for special use cases like transparent videos.
145
+ * @param params.imageFormat Which image format the frames should be rendered in.
146
+ * @param params.scale Scales the output dimensions by a factor.
147
+ * @param params.everyNthFrame Only used if rendering gigs - renders only every nth frame.
148
+ * @param params.numberOfGifLoops Only used if rendering gigs - how many times the gif should loop. Null means infinite.
149
+ * @param params.frameRange Specify a single frame (a number) or a range of frames (a tuple [number, number]) to be rendered.
150
+ * @param params.envVariables Object containing environment variables to be injected in your project.
151
+ * @param params.chromiumOptions Allows you to set certain Chromium / Google Chrome flags.
152
+ * @param params.muted If set to true, no audio is rendered.
153
+ * @param params.forceWidth Overrides default composition width.
154
+ * @param params.forceHeight Overrides default composition height.
155
+ * @param params.logLevel Level of logging that Cloud Run service should perform. Default "info".
156
+ * @param params.delayRenderTimeoutInMilliseconds A number describing how long the render may take to resolve all delayRender() calls before it times out.
157
+ * @param params.concurrency By default, each Cloud Run service renders with concurrency 100% (equal to number of available cores). You may use the option to customize this value.
158
+ * @param params.enforceAudioTrack Render a silent audio track if there wouldn't be any otherwise.
159
+ * @param params.preferLossless Uses a lossless audio codec, if one is available for the codec. If you set audioCodec, it takes priority over preferLossless.
160
+ * @returns {Promise<RenderMediaOnCloudrunOutput>} See documentation for detailed structure
161
+ */
162
+ exports.renderMediaOnCloudrun = pure_1.PureJSAPIs.wrapWithErrorHandling(renderMediaOnCloudrunRaw);
@@ -23,28 +23,4 @@ export type RenderStillOnCloudrunInput = {
23
23
  logLevel?: LogLevel;
24
24
  delayRenderTimeoutInMilliseconds?: number;
25
25
  } & Partial<ToOptions<typeof BrowserSafeApis.optionsMap.renderMediaOnLambda>>;
26
- /**
27
- * @description Triggers a render on a GCP Cloud Run service given a composition and a Cloud Run URL.
28
- * @see [Documentation](https://remotion.dev/docs/cloudrun/renderstilloncloudrun)
29
- * @param params.cloudRunUrl The URL of the Cloud Run service that should be used. Use either this or serviceName.
30
- * @param params.serviceName The name of the Cloud Run service that should be used. Use either this or cloudRunUrl.
31
- * @param params.region The region that the Cloud Run service is deployed in.
32
- * @param params.serveUrl The URL of the deployed project
33
- * @param params.composition The ID of the composition which should be rendered.
34
- * @param params.inputProps The input props that should be passed to the composition.
35
- * @param params.forceBucketName The name of the bucket that the output file should be uploaded to.
36
- * @param params.privacy Whether the output file should be public or private.
37
- * @param params.outName The name of the output file.
38
- * @param params.imageFormat Which image format the frame should be rendered in.
39
- * @param params.envVariables Object containing environment variables to be injected in your project.
40
- * @param params.frame Which frame of the composition should be rendered. Frames are zero-indexed.
41
- * @param params.jpegQuality JPEG quality if JPEG was selected as the image format.
42
- * @param params.chromiumOptions Allows you to set certain Chromium / Google Chrome flags.
43
- * @param params.scale Scales the output dimensions by a factor.
44
- * @param params.forceWidth Overrides default composition width.
45
- * @param params.forceHeight Overrides default composition height.
46
- * @param params.logLevel Level of logging that Cloud Run service should perform. Default "info".
47
- * @param params.delayRenderTimeoutInMilliseconds A number describing how long the render may take to resolve all delayRender() calls before it times out.
48
- * @returns {Promise<RenderStillOnCloudrunOutput>} See documentation for detailed structure
49
- */
50
26
  export declare const renderStillOnCloudrun: ({ cloudRunUrl, serviceName, region, serveUrl, composition, inputProps, forceBucketName, privacy, outName, imageFormat, envVariables, frame, jpegQuality, chromiumOptions, scale, forceWidth, forceHeight, logLevel, delayRenderTimeoutInMilliseconds, offthreadVideoCacheSizeInBytes, }: RenderStillOnCloudrunInput) => Promise<RenderStillOnCloudrunOutput | ErrorResponsePayload | CloudRunCrashResponse>;
@@ -2,6 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.renderStillOnCloudrun = void 0;
4
4
  const renderer_1 = require("@remotion/renderer");
5
+ const pure_1 = require("@remotion/renderer/pure");
5
6
  const remotion_1 = require("remotion");
6
7
  const validate_privacy_1 = require("../shared/validate-privacy");
7
8
  const validate_serveurl_1 = require("../shared/validate-serveurl");
@@ -32,7 +33,7 @@ const get_cloudrun_endpoint_1 = require("./helpers/get-cloudrun-endpoint");
32
33
  * @param params.delayRenderTimeoutInMilliseconds A number describing how long the render may take to resolve all delayRender() calls before it times out.
33
34
  * @returns {Promise<RenderStillOnCloudrunOutput>} See documentation for detailed structure
34
35
  */
35
- const renderStillOnCloudrun = async ({ cloudRunUrl, serviceName, region, serveUrl, composition, inputProps, forceBucketName, privacy, outName, imageFormat, envVariables, frame, jpegQuality, chromiumOptions, scale, forceWidth, forceHeight, logLevel, delayRenderTimeoutInMilliseconds, offthreadVideoCacheSizeInBytes, }) => {
36
+ const renderStillOnCloudrunRaw = async ({ cloudRunUrl, serviceName, region, serveUrl, composition, inputProps, forceBucketName, privacy, outName, imageFormat, envVariables, frame, jpegQuality, chromiumOptions, scale, forceWidth, forceHeight, logLevel, delayRenderTimeoutInMilliseconds, offthreadVideoCacheSizeInBytes, }) => {
36
37
  (0, validate_serveurl_1.validateServeUrl)(serveUrl);
37
38
  if (privacy)
38
39
  (0, validate_privacy_1.validatePrivacy)(privacy);
@@ -122,4 +123,4 @@ const renderStillOnCloudrun = async ({ cloudRunUrl, serviceName, region, serveUr
122
123
  });
123
124
  return renderResponse;
124
125
  };
125
- exports.renderStillOnCloudrun = renderStillOnCloudrun;
126
+ exports.renderStillOnCloudrun = pure_1.PureJSAPIs.wrapWithErrorHandling(renderStillOnCloudrunRaw);
package/dist/cli/index.js CHANGED
@@ -53,7 +53,7 @@ const executeCommand = async (args, remotionRoot) => {
53
53
  catch (err) {
54
54
  const error = err;
55
55
  if (error instanceof renderer_1.RenderInternals.SymbolicateableError) {
56
- await cli_1.CliInternals.handleCommonError(error, config_1.ConfigInternals.Logging.getLogLevel());
56
+ await cli_1.CliInternals.printError(error, config_1.ConfigInternals.Logging.getLogLevel());
57
57
  }
58
58
  else {
59
59
  const frames = renderer_1.RenderInternals.parseStack((_b = (_a = error.stack) === null || _a === void 0 ? void 0 : _a.split('\n')) !== null && _b !== void 0 ? _b : []);
@@ -64,7 +64,7 @@ const executeCommand = async (args, remotionRoot) => {
64
64
  stack: error.stack,
65
65
  stackFrame: frames,
66
66
  });
67
- await cli_1.CliInternals.handleCommonError(errorWithStackFrame, config_1.ConfigInternals.Logging.getLogLevel());
67
+ await cli_1.CliInternals.printError(errorWithStackFrame, config_1.ConfigInternals.Logging.getLogLevel());
68
68
  }
69
69
  (0, quit_1.quit)(1);
70
70
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remotion/cloudrun",
3
- "version": "4.0.25",
3
+ "version": "4.0.27",
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.21.4",
15
- "@remotion/bundler": "4.0.25",
16
- "remotion": "4.0.25",
17
- "@remotion/cli": "4.0.25",
18
- "@remotion/renderer": "4.0.25"
15
+ "@remotion/bundler": "4.0.27",
16
+ "@remotion/renderer": "4.0.27",
17
+ "remotion": "4.0.27",
18
+ "@remotion/cli": "4.0.27"
19
19
  },
20
20
  "devDependencies": {
21
21
  "@jonny/eslint-config": "3.0.266",
@@ -26,7 +26,7 @@
26
26
  "prettier-plugin-organize-imports": "^3.2.2",
27
27
  "ts-node": "^10.8.0",
28
28
  "vitest": "0.24.3",
29
- "@remotion/compositor-linux-x64-gnu": "4.0.25"
29
+ "@remotion/compositor-linux-x64-gnu": "4.0.27"
30
30
  },
31
31
  "exports": {
32
32
  "./package.json": "./package.json",
@@ -1,5 +0,0 @@
1
-
2
- > @remotion/cloudrun@4.0.22 lint /Users/jonathanburger/remotion/packages/cloudrun
3
- > eslint src --ext ts,tsx
4
-
5
-  ELIFECYCLE  Command failed.