@remotion/lambda 3.3.44 → 3.3.45

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,4 +1,4 @@
1
- import type { WebpackOverrideFn } from 'remotion';
1
+ import type { WebpackOverrideFn } from '@remotion/bundler';
2
2
  import type { AwsRegion } from '../pricing/aws-regions';
3
3
  import type { UploadDirProgress } from './upload-dir';
4
4
  export declare type DeploySiteInput = {
@@ -2,7 +2,6 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.functionsDeploySubcommand = exports.FUNCTIONS_DEPLOY_SUBCOMMAND = void 0;
4
4
  const cli_1 = require("@remotion/cli");
5
- const log_1 = require("@remotion/cli/dist/log");
6
5
  const version_1 = require("remotion/version");
7
6
  const deploy_function_1 = require("../../../api/deploy-function");
8
7
  const constants_1 = require("../../../shared/constants");
@@ -30,7 +29,7 @@ const functionsDeploySubcommand = async () => {
30
29
  (0, validate_disk_size_in_mb_1.validateDiskSizeInMb)(diskSizeInMb);
31
30
  (0, validate_custom_role_arn_1.validateCustomRoleArn)(customRoleArn);
32
31
  if (!cli_1.CliInternals.quietFlagProvided()) {
33
- log_1.Log.info(cli_1.CliInternals.chalk.gray(`
32
+ cli_1.CliInternals.Log.info(cli_1.CliInternals.chalk.gray(`
34
33
  Region = ${region}
35
34
  Memory = ${memorySizeInMb}MB
36
35
  Disk size = ${diskSizeInMb}MB
@@ -54,7 +53,7 @@ CloudWatch Retention Period = ${cloudWatchLogRetentionPeriodInDays} days
54
53
  customRoleArn,
55
54
  });
56
55
  if (cli_1.CliInternals.quietFlagProvided()) {
57
- log_1.Log.info(functionName);
56
+ cli_1.CliInternals.Log.info(functionName);
58
57
  }
59
58
  if (alreadyExisted) {
60
59
  output.update(`Already exists as ${functionName}\n`);
@@ -2,7 +2,6 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.functionsCommand = exports.FUNCTIONS_COMMAND = void 0;
4
4
  const cli_1 = require("@remotion/cli");
5
- const log_1 = require("@remotion/cli/dist/log");
6
5
  const constants_1 = require("../../../shared/constants");
7
6
  const quit_1 = require("../../helpers/quit");
8
7
  const deploy_1 = require("./deploy");
@@ -11,21 +10,21 @@ const rm_1 = require("./rm");
11
10
  const rmall_1 = require("./rmall");
12
11
  exports.FUNCTIONS_COMMAND = 'functions';
13
12
  const printFunctionsHelp = () => {
14
- log_1.Log.info(`${constants_1.BINARY_NAME} ${exports.FUNCTIONS_COMMAND} <subcommand>`);
15
- log_1.Log.info();
16
- log_1.Log.info('Available subcommands:');
17
- log_1.Log.info('');
18
- log_1.Log.info(`${constants_1.BINARY_NAME} ${exports.FUNCTIONS_COMMAND} ${ls_1.FUNCTIONS_LS_SUBCOMMAND}`);
19
- log_1.Log.info(cli_1.CliInternals.chalk.gray('Lists the functions currently deployed'));
20
- log_1.Log.info('');
21
- log_1.Log.info(`${constants_1.BINARY_NAME} ${exports.FUNCTIONS_COMMAND} ${deploy_1.FUNCTIONS_DEPLOY_SUBCOMMAND}`);
22
- log_1.Log.info(cli_1.CliInternals.chalk.gray('Deploy a new Lambda function'));
23
- log_1.Log.info('');
24
- log_1.Log.info(`${constants_1.BINARY_NAME} ${exports.FUNCTIONS_COMMAND} ${rm_1.FUNCTIONS_RM_SUBCOMMAND} <function-name>`);
25
- log_1.Log.info(cli_1.CliInternals.chalk.gray('Delete a Lambda function'));
26
- log_1.Log.info('');
27
- log_1.Log.info(`${constants_1.BINARY_NAME} ${exports.FUNCTIONS_COMMAND} ${rmall_1.FUNCTIONS_RMALL_SUBCOMMAND}`);
28
- log_1.Log.info(cli_1.CliInternals.chalk.gray('Delete all functions in selected region'));
13
+ cli_1.CliInternals.Log.info(`${constants_1.BINARY_NAME} ${exports.FUNCTIONS_COMMAND} <subcommand>`);
14
+ cli_1.CliInternals.Log.info();
15
+ cli_1.CliInternals.Log.info('Available subcommands:');
16
+ cli_1.CliInternals.Log.info('');
17
+ cli_1.CliInternals.Log.info(`${constants_1.BINARY_NAME} ${exports.FUNCTIONS_COMMAND} ${ls_1.FUNCTIONS_LS_SUBCOMMAND}`);
18
+ cli_1.CliInternals.Log.info(cli_1.CliInternals.chalk.gray('Lists the functions currently deployed'));
19
+ cli_1.CliInternals.Log.info('');
20
+ cli_1.CliInternals.Log.info(`${constants_1.BINARY_NAME} ${exports.FUNCTIONS_COMMAND} ${deploy_1.FUNCTIONS_DEPLOY_SUBCOMMAND}`);
21
+ cli_1.CliInternals.Log.info(cli_1.CliInternals.chalk.gray('Deploy a new Lambda function'));
22
+ cli_1.CliInternals.Log.info('');
23
+ cli_1.CliInternals.Log.info(`${constants_1.BINARY_NAME} ${exports.FUNCTIONS_COMMAND} ${rm_1.FUNCTIONS_RM_SUBCOMMAND} <function-name>`);
24
+ cli_1.CliInternals.Log.info(cli_1.CliInternals.chalk.gray('Delete a Lambda function'));
25
+ cli_1.CliInternals.Log.info('');
26
+ cli_1.CliInternals.Log.info(`${constants_1.BINARY_NAME} ${exports.FUNCTIONS_COMMAND} ${rmall_1.FUNCTIONS_RMALL_SUBCOMMAND}`);
27
+ cli_1.CliInternals.Log.info(cli_1.CliInternals.chalk.gray('Delete all functions in selected region'));
29
28
  };
30
29
  const functionsCommand = (args) => {
31
30
  if (args[0] === ls_1.FUNCTIONS_LS_SUBCOMMAND) {
@@ -41,7 +40,7 @@ const functionsCommand = (args) => {
41
40
  return (0, deploy_1.functionsDeploySubcommand)();
42
41
  }
43
42
  if (args[0]) {
44
- log_1.Log.error(`Subcommand ${args[0]} not found.`);
43
+ cli_1.CliInternals.Log.error(`Subcommand ${args[0]} not found.`);
45
44
  printFunctionsHelp();
46
45
  (0, quit_1.quit)(1);
47
46
  }
@@ -2,7 +2,6 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.functionsLsCommand = exports.FUNCTIONS_LS_SUBCOMMAND = void 0;
4
4
  const cli_1 = require("@remotion/cli");
5
- const log_1 = require("@remotion/cli/dist/log");
6
5
  const get_functions_1 = require("../../../api/get-functions");
7
6
  const get_aws_region_1 = require("../../get-aws-region");
8
7
  const NAME_COLS = 70;
@@ -21,17 +20,17 @@ const functionsLsCommand = async () => {
21
20
  });
22
21
  if (cli_1.CliInternals.quietFlagProvided()) {
23
22
  if (functions.length === 0) {
24
- log_1.Log.info('()');
23
+ cli_1.CliInternals.Log.info('()');
25
24
  return;
26
25
  }
27
- log_1.Log.info(functions.map((f) => f.functionName).join(' '));
26
+ cli_1.CliInternals.Log.info(functions.map((f) => f.functionName).join(' '));
28
27
  return;
29
28
  }
30
29
  fetchingOutput.update('Getting function info...');
31
30
  const pluralized = functions.length === 1 ? 'function' : 'functions';
32
31
  fetchingOutput.update(`${functions.length} ${pluralized} in the ${region} region`);
33
- log_1.Log.info();
34
- log_1.Log.info(cli_1.CliInternals.chalk.gray([
32
+ cli_1.CliInternals.Log.info();
33
+ cli_1.CliInternals.Log.info(cli_1.CliInternals.chalk.gray([
35
34
  'Name'.padEnd(NAME_COLS, ' '),
36
35
  'Version'.padEnd(VERSION_COLS, ' '),
37
36
  'Disk (MB)'.padEnd(MEMORY_COLS, ' '),
@@ -39,7 +38,7 @@ const functionsLsCommand = async () => {
39
38
  'Timeout (sec)'.padEnd(TIMEOUT_COLS, ' '),
40
39
  ].join('')));
41
40
  for (const datapoint of functions) {
42
- log_1.Log.info([
41
+ cli_1.CliInternals.Log.info([
43
42
  datapoint.functionName.padEnd(NAME_COLS, ' '),
44
43
  datapoint.version
45
44
  ? datapoint.version.padEnd(VERSION_COLS, ' ')
@@ -2,7 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.quotasIncreaseCommand = exports.INCREASE_SUBCOMMAND = void 0;
4
4
  const client_service_quotas_1 = require("@aws-sdk/client-service-quotas");
5
- const log_1 = require("@remotion/cli/dist/log");
5
+ const cli_1 = require("@remotion/cli");
6
6
  const process_1 = require("process");
7
7
  const _1 = require(".");
8
8
  const defaults_1 = require("../../../defaults");
@@ -30,19 +30,19 @@ const quotasIncreaseCommand = async () => {
30
30
  ]);
31
31
  const openCase = (_a = changes.RequestedQuotas) === null || _a === void 0 ? void 0 : _a.find((r) => r.Status === 'CASE_OPENED');
32
32
  if (openCase) {
33
- log_1.Log.warn(`A request to increase it to ${openCase.DesiredValue} is already pending:`);
34
- log_1.Log.warn(`https://${region}.console.aws.amazon.com/support/home#/case/?displayId=${openCase.CaseId}`);
33
+ cli_1.CliInternals.Log.warn(`A request to increase it to ${openCase.DesiredValue} is already pending:`);
34
+ cli_1.CliInternals.Log.warn(`https://${region}.console.aws.amazon.com/support/home#/case/?displayId=${openCase.CaseId}`);
35
35
  (0, process_1.exit)(1);
36
36
  }
37
37
  const concurrencyCurrent = (_b = concurrencyLimit.Quota) === null || _b === void 0 ? void 0 : _b.Value;
38
38
  const defaultConcurrency = (_c = defaultConcurrencyLimit.Quota) === null || _c === void 0 ? void 0 : _c.Value;
39
39
  const increaseRecommended = concurrencyCurrent <= defaultConcurrency;
40
40
  if (!increaseRecommended) {
41
- log_1.Log.info(`Current limit of ${concurrencyCurrent} is already increased over the default (${defaultConcurrency}). Increase it further via the AWS console.`);
41
+ cli_1.CliInternals.Log.info(`Current limit of ${concurrencyCurrent} is already increased over the default (${defaultConcurrency}). Increase it further via the AWS console.`);
42
42
  (0, quit_1.quit)(1);
43
43
  }
44
44
  const newLimit = Math.floor(concurrencyCurrent / 5000) * 5000 + 5000;
45
- log_1.Log.info(`Sending request to AWS to increase concurrency limit from ${concurrencyCurrent} to ${newLimit}.`);
45
+ cli_1.CliInternals.Log.info(`Sending request to AWS to increase concurrency limit from ${concurrencyCurrent} to ${newLimit}.`);
46
46
  await (0, confirm_1.confirmCli)({
47
47
  allowForceFlag: true,
48
48
  delMessage: 'Send? (Y/n)',
@@ -52,6 +52,6 @@ const quotasIncreaseCommand = async () => {
52
52
  DesiredValue: newLimit,
53
53
  ServiceCode: 'lambda',
54
54
  }));
55
- log_1.Log.info(`Requested increase successfully. Run "${defaults_1.BINARY_NAME} ${_1.QUOTAS_COMMAND}" to check whether your request was approved.`);
55
+ cli_1.CliInternals.Log.info(`Requested increase successfully. Run "${defaults_1.BINARY_NAME} ${_1.QUOTAS_COMMAND}" to check whether your request was approved.`);
56
56
  };
57
57
  exports.quotasIncreaseCommand = quotasIncreaseCommand;
@@ -2,19 +2,18 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.quotasCommand = exports.QUOTAS_COMMAND = void 0;
4
4
  const cli_1 = require("@remotion/cli");
5
- const log_1 = require("@remotion/cli/dist/log");
6
5
  const defaults_1 = require("../../../defaults");
7
6
  const increase_1 = require("./increase");
8
7
  const list_1 = require("./list");
9
8
  exports.QUOTAS_COMMAND = 'quotas';
10
9
  const printHelp = () => {
11
- log_1.Log.info('Available commands:');
12
- log_1.Log.info();
13
- log_1.Log.info(`npx ${defaults_1.BINARY_NAME} ${exports.QUOTAS_COMMAND}`);
14
- log_1.Log.info(cli_1.CliInternals.chalk.gray('List relevant AWS Lambda quotas.'));
15
- log_1.Log.info();
16
- log_1.Log.info(`npx ${defaults_1.BINARY_NAME} ${exports.QUOTAS_COMMAND} ${increase_1.INCREASE_SUBCOMMAND}`);
17
- log_1.Log.info(cli_1.CliInternals.chalk.gray('Increase Lambda quotas.'));
10
+ cli_1.CliInternals.Log.info('Available commands:');
11
+ cli_1.CliInternals.Log.info();
12
+ cli_1.CliInternals.Log.info(`npx ${defaults_1.BINARY_NAME} ${exports.QUOTAS_COMMAND}`);
13
+ cli_1.CliInternals.Log.info(cli_1.CliInternals.chalk.gray('List relevant AWS Lambda quotas.'));
14
+ cli_1.CliInternals.Log.info();
15
+ cli_1.CliInternals.Log.info(`npx ${defaults_1.BINARY_NAME} ${exports.QUOTAS_COMMAND} ${increase_1.INCREASE_SUBCOMMAND}`);
16
+ cli_1.CliInternals.Log.info(cli_1.CliInternals.chalk.gray('Increase Lambda quotas.'));
18
17
  };
19
18
  const quotasCommand = (args) => {
20
19
  if (args.filter(Boolean).length === 0) {
@@ -23,7 +22,7 @@ const quotasCommand = (args) => {
23
22
  if (args[0] === increase_1.INCREASE_SUBCOMMAND) {
24
23
  return (0, increase_1.quotasIncreaseCommand)();
25
24
  }
26
- log_1.Log.error('Subcommand ' + args[0] + ' not found.');
25
+ cli_1.CliInternals.Log.error('Subcommand ' + args[0] + ' not found.');
27
26
  printHelp();
28
27
  };
29
28
  exports.quotasCommand = quotasCommand;
@@ -1,13 +1,13 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.regionsCommand = exports.REGIONS_COMMAND = void 0;
4
- const log_1 = require("@remotion/cli/dist/log");
4
+ const cli_1 = require("@remotion/cli");
5
5
  const get_regions_1 = require("../../api/get-regions");
6
6
  const args_1 = require("../args");
7
7
  exports.REGIONS_COMMAND = 'regions';
8
8
  const regionsCommand = () => {
9
9
  var _a;
10
- log_1.Log.info((0, get_regions_1.getRegions)({
10
+ cli_1.CliInternals.Log.info((0, get_regions_1.getRegions)({
11
11
  enabledByDefaultOnly: (_a = args_1.parsedLambdaCli['default-only']) !== null && _a !== void 0 ? _a : false,
12
12
  }).join(' '));
13
13
  };
@@ -2,7 +2,6 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.sitesCommand = exports.SITES_COMMAND = void 0;
4
4
  const cli_1 = require("@remotion/cli");
5
- const log_1 = require("@remotion/cli/dist/log");
6
5
  const constants_1 = require("../../../shared/constants");
7
6
  const quit_1 = require("../../helpers/quit");
8
7
  const create_1 = require("./create");
@@ -11,18 +10,18 @@ const rm_1 = require("./rm");
11
10
  const rmall_1 = require("./rmall");
12
11
  exports.SITES_COMMAND = 'sites';
13
12
  const printSitesHelp = () => {
14
- log_1.Log.info(`${constants_1.BINARY_NAME} ${exports.SITES_COMMAND} <subcommand>`);
15
- log_1.Log.info();
16
- log_1.Log.info('Available subcommands:');
17
- log_1.Log.info();
18
- log_1.Log.info(`${constants_1.BINARY_NAME} ${exports.SITES_COMMAND} ${create_1.SITES_CREATE_SUBCOMMAND} <entry-point>`);
19
- log_1.Log.info(cli_1.CliInternals.chalk.gray('Creates a new site based on a Remotion project'));
20
- log_1.Log.info();
21
- log_1.Log.info(`${constants_1.BINARY_NAME} ${exports.SITES_COMMAND} ${ls_1.SITES_LS_SUBCOMMAND}`);
22
- log_1.Log.info(cli_1.CliInternals.chalk.gray('Lists the sites currently deployed'));
23
- log_1.Log.info();
24
- log_1.Log.info(`${constants_1.BINARY_NAME} ${exports.SITES_COMMAND} ${rm_1.SITES_RM_COMMAND} <site-id>`);
25
- log_1.Log.info(cli_1.CliInternals.chalk.gray('Remove a site from the S3 bucket.'));
13
+ cli_1.CliInternals.Log.info(`${constants_1.BINARY_NAME} ${exports.SITES_COMMAND} <subcommand>`);
14
+ cli_1.CliInternals.Log.info();
15
+ cli_1.CliInternals.Log.info('Available subcommands:');
16
+ cli_1.CliInternals.Log.info();
17
+ cli_1.CliInternals.Log.info(`${constants_1.BINARY_NAME} ${exports.SITES_COMMAND} ${create_1.SITES_CREATE_SUBCOMMAND} <entry-point>`);
18
+ cli_1.CliInternals.Log.info(cli_1.CliInternals.chalk.gray('Creates a new site based on a Remotion project'));
19
+ cli_1.CliInternals.Log.info();
20
+ cli_1.CliInternals.Log.info(`${constants_1.BINARY_NAME} ${exports.SITES_COMMAND} ${ls_1.SITES_LS_SUBCOMMAND}`);
21
+ cli_1.CliInternals.Log.info(cli_1.CliInternals.chalk.gray('Lists the sites currently deployed'));
22
+ cli_1.CliInternals.Log.info();
23
+ cli_1.CliInternals.Log.info(`${constants_1.BINARY_NAME} ${exports.SITES_COMMAND} ${rm_1.SITES_RM_COMMAND} <site-id>`);
24
+ cli_1.CliInternals.Log.info(cli_1.CliInternals.chalk.gray('Remove a site from the S3 bucket.'));
26
25
  };
27
26
  const sitesCommand = (args, remotionRoot) => {
28
27
  if (args[0] === ls_1.SITES_LS_SUBCOMMAND) {
@@ -38,7 +37,7 @@ const sitesCommand = (args, remotionRoot) => {
38
37
  return (0, create_1.sitesCreateSubcommand)(args.slice(1), remotionRoot);
39
38
  }
40
39
  if (args[0]) {
41
- log_1.Log.error(`Subcommand ${args[0]} not found.`);
40
+ cli_1.CliInternals.Log.error(`Subcommand ${args[0]} not found.`);
42
41
  printSitesHelp();
43
42
  (0, quit_1.quit)(1);
44
43
  }
@@ -2,7 +2,6 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.sitesLsSubcommand = exports.SITES_LS_SUBCOMMAND = void 0;
4
4
  const cli_1 = require("@remotion/cli");
5
- const log_1 = require("@remotion/cli/dist/log");
6
5
  const get_sites_1 = require("../../../api/get-sites");
7
6
  const get_aws_region_1 = require("../../get-aws-region");
8
7
  const date_string_1 = require("../../helpers/date-string");
@@ -20,30 +19,30 @@ const sitesLsSubcommand = async () => {
20
19
  const region = (0, get_aws_region_1.getAwsRegion)();
21
20
  const { sites, buckets } = await (0, get_sites_1.getSites)({ region });
22
21
  if (buckets.length > 1 && !cli_1.CliInternals.quietFlagProvided()) {
23
- log_1.Log.warn('Warning: You have more than one Remotion S3 bucket, but only one is needed. This can lead to conflicts. Remove all but one of them.');
22
+ cli_1.CliInternals.Log.warn('Warning: You have more than one Remotion S3 bucket, but only one is needed. This can lead to conflicts. Remove all but one of them.');
24
23
  }
25
24
  const sitesPluralized = sites.length === 1 ? 'site' : 'sites';
26
25
  if (!cli_1.CliInternals.quietFlagProvided()) {
27
- log_1.Log.info(`${sites.length} ${sitesPluralized} in the ${region} region.`);
26
+ cli_1.CliInternals.Log.info(`${sites.length} ${sitesPluralized} in the ${region} region.`);
28
27
  }
29
28
  if (cli_1.CliInternals.quietFlagProvided()) {
30
29
  if (sites.length === 0) {
31
- log_1.Log.info('()');
30
+ cli_1.CliInternals.Log.info('()');
32
31
  return;
33
32
  }
34
- return log_1.Log.info(sites.map((s) => s.id).join(' '));
33
+ return cli_1.CliInternals.Log.info(sites.map((s) => s.id).join(' '));
35
34
  }
36
- log_1.Log.info();
37
- log_1.Log.info(cli_1.CliInternals.chalk.gray(logRow(['Site Name', 'Bucket', 'Size', 'Last updated'])));
35
+ cli_1.CliInternals.Log.info();
36
+ cli_1.CliInternals.Log.info(cli_1.CliInternals.chalk.gray(logRow(['Site Name', 'Bucket', 'Size', 'Last updated'])));
38
37
  for (const site of sites) {
39
- log_1.Log.info(logRow([
38
+ cli_1.CliInternals.Log.info(logRow([
40
39
  site.id,
41
40
  site.bucketName,
42
41
  cli_1.CliInternals.formatBytes(site.sizeInBytes),
43
42
  site.lastModified ? (0, date_string_1.dateString)(new Date(site.lastModified)) : 'n/a',
44
43
  ]));
45
- log_1.Log.info(site.serveUrl);
46
- log_1.Log.info();
44
+ cli_1.CliInternals.Log.info(site.serveUrl);
45
+ cli_1.CliInternals.Log.info();
47
46
  }
48
47
  };
49
48
  exports.sitesLsSubcommand = sitesLsSubcommand;
@@ -1 +1 @@
1
- export declare const getCurrentRegionInFunction: () => "eu-central-1" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "eu-south-1" | "eu-north-1" | "us-east-1" | "us-east-2" | "us-west-1" | "us-west-2" | "af-south-1" | "ap-south-1" | "ap-east-1" | "ap-southeast-1" | "ap-southeast-2" | "ap-northeast-1" | "ap-northeast-2" | "ap-northeast-3" | "ca-central-1" | "me-south-1" | "sa-east-1";
1
+ export declare const getCurrentRegionInFunction: () => "eu-central-1" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "eu-north-1" | "us-east-1" | "us-east-2" | "us-west-1" | "us-west-2" | "ap-south-1" | "ap-southeast-1" | "ap-southeast-2" | "ap-northeast-1" | "ap-northeast-2" | "ap-northeast-3" | "ca-central-1" | "sa-east-1" | "eu-south-1" | "af-south-1" | "ap-east-1" | "me-south-1";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remotion/lambda",
3
- "version": "3.3.44",
3
+ "version": "3.3.45",
4
4
  "description": "Distributed renderer for Remotion based on AWS Lambda",
5
5
  "main": "dist/index.js",
6
6
  "sideEffects": false,
@@ -33,17 +33,18 @@
33
33
  "@aws-sdk/credential-providers": "3.215.0",
34
34
  "@aws-sdk/lib-storage": "3.215.0",
35
35
  "@aws-sdk/s3-request-presigner": "3.215.0",
36
- "@remotion/bundler": "3.3.44",
37
- "@remotion/cli": "3.3.44",
38
- "@remotion/renderer": "3.3.44",
36
+ "@remotion/bundler": "3.3.45",
37
+ "@remotion/cli": "3.3.45",
38
+ "@remotion/renderer": "3.3.45",
39
39
  "aws-policies": "^1.0.1",
40
40
  "mime-types": "2.1.34",
41
- "remotion": "3.3.44"
41
+ "remotion": "3.3.45"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@jonny/eslint-config": "3.0.266",
45
- "@remotion/compositor-linux-arm64-musl": "3.3.44",
46
- "@remotion/compositor-linux-x64-musl": "3.3.44",
45
+ "@remotion/bundler": "3.3.44",
46
+ "@remotion/compositor-linux-arm64-musl": "3.3.45",
47
+ "@remotion/compositor-linux-x64-musl": "3.3.45",
47
48
  "@types/mime-types": "2.1.1",
48
49
  "@types/minimist": "1.2.2",
49
50
  "@types/node": "^14.14.14",
@@ -56,8 +57,34 @@
56
57
  "vitest": "^0.24.3",
57
58
  "zip-lib": "^0.7.2"
58
59
  },
60
+ "peerDependencies": {
61
+ "@remotion/bundler": "3.3.44"
62
+ },
59
63
  "publishConfig": {
60
64
  "access": "public"
61
65
  },
62
- "gitHead": "7ba7bbdacbda1499ecdb92f1d9581d5db458edf8"
66
+ "exports": {
67
+ ".": "./dist/index.js",
68
+ "./defaults": "./dist/defaults.js",
69
+ "./regions": "./dist/regions.js",
70
+ "./policies": "./dist/api/iam-validation/suggested-policy.js",
71
+ "./client": "./dist/client.js"
72
+ },
73
+ "typesVersions": {
74
+ ">=1.0": {
75
+ "defaults": [
76
+ "dist/defaults.d.ts"
77
+ ],
78
+ "regions": [
79
+ "dist/regions.d.ts"
80
+ ],
81
+ "policies": [
82
+ "dist/api/iam-validation/suggested-policy.d.ts"
83
+ ],
84
+ "client": [
85
+ "dist/client.d.ts"
86
+ ]
87
+ }
88
+ },
89
+ "gitHead": "75c028236b43ff2fd0f3f3772f9f79cfde069e36"
63
90
  }
Binary file
Binary file
package/client.d.ts DELETED
@@ -1 +0,0 @@
1
- export * from './dist/client';
package/client.js DELETED
@@ -1 +0,0 @@
1
- module.exports = require('./dist/client');