@remotion/lambda 3.3.70 → 3.3.71

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,7 +1,10 @@
1
1
  "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
2
5
  Object.defineProperty(exports, "__esModule", { value: true });
3
6
  exports.deploySite = void 0;
4
- const fs_1 = require("fs");
7
+ const fs_1 = __importDefault(require("fs"));
5
8
  const io_1 = require("../functions/helpers/io");
6
9
  const bundle_site_1 = require("../shared/bundle-site");
7
10
  const constants_1 = require("../shared/constants");
@@ -84,7 +87,12 @@ const deploySite = async ({ bucketName, entryPoint, siteName, options, region, }
84
87
  })),
85
88
  ]);
86
89
  if (!process.env.VITEST) {
87
- (0, fs_1.rmdirSync)(bundled, { recursive: true });
90
+ if (fs_1.default.rmSync) {
91
+ fs_1.default.rmSync(bundled);
92
+ }
93
+ else {
94
+ fs_1.default.rmdirSync(bundled, { recursive: true });
95
+ }
88
96
  }
89
97
  return {
90
98
  serveUrl: (0, make_s3_url_1.makeS3ServeUrl)({ bucketName, subFolder, region }),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remotion/lambda",
3
- "version": "3.3.70",
3
+ "version": "3.3.71",
4
4
  "description": "Distributed renderer for Remotion based on AWS Lambda",
5
5
  "main": "dist/index.js",
6
6
  "sideEffects": false,
@@ -33,18 +33,18 @@
33
33
  "@aws-sdk/credential-providers": "3.272.0",
34
34
  "@aws-sdk/lib-storage": "3.272.0",
35
35
  "@aws-sdk/s3-request-presigner": "3.272.0",
36
- "@remotion/bundler": "3.3.70",
37
- "@remotion/cli": "3.3.70",
38
- "@remotion/renderer": "3.3.70",
36
+ "@remotion/bundler": "3.3.71",
37
+ "@remotion/cli": "3.3.71",
38
+ "@remotion/renderer": "3.3.71",
39
39
  "aws-policies": "^1.0.1",
40
40
  "mime-types": "2.1.34",
41
- "remotion": "3.3.70"
41
+ "remotion": "3.3.71"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@jonny/eslint-config": "3.0.266",
45
- "@remotion/bundler": "3.3.69",
46
- "@remotion/compositor-linux-arm64-musl": "3.3.70",
47
- "@remotion/compositor-linux-x64-musl": "3.3.70",
45
+ "@remotion/bundler": "3.3.70",
46
+ "@remotion/compositor-linux-arm64-musl": "3.3.71",
47
+ "@remotion/compositor-linux-x64-musl": "3.3.71",
48
48
  "@types/mime-types": "2.1.1",
49
49
  "@types/minimist": "1.2.2",
50
50
  "@types/node": "^14.14.14",
@@ -58,7 +58,7 @@
58
58
  "zip-lib": "^0.7.2"
59
59
  },
60
60
  "peerDependencies": {
61
- "@remotion/bundler": "3.3.69"
61
+ "@remotion/bundler": "3.3.70"
62
62
  },
63
63
  "publishConfig": {
64
64
  "access": "public"
@@ -88,5 +88,5 @@
88
88
  ]
89
89
  }
90
90
  },
91
- "gitHead": "5be0baab44cf6de263f5825eadd5eecd0395942c"
91
+ "gitHead": "0735e6d74278ea46fc01a2d07237da2d0286ce61"
92
92
  }
Binary file
Binary file