@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.
- package/dist/api/deploy-site.js +10 -2
- package/package.json +10 -10
- package/remotionlambda-arm64.zip +0 -0
- package/remotionlambda-x64.zip +0 -0
package/dist/api/deploy-site.js
CHANGED
|
@@ -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
|
-
(
|
|
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.
|
|
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.
|
|
37
|
-
"@remotion/cli": "3.3.
|
|
38
|
-
"@remotion/renderer": "3.3.
|
|
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.
|
|
41
|
+
"remotion": "3.3.71"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@jonny/eslint-config": "3.0.266",
|
|
45
|
-
"@remotion/bundler": "3.3.
|
|
46
|
-
"@remotion/compositor-linux-arm64-musl": "3.3.
|
|
47
|
-
"@remotion/compositor-linux-x64-musl": "3.3.
|
|
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.
|
|
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": "
|
|
91
|
+
"gitHead": "0735e6d74278ea46fc01a2d07237da2d0286ce61"
|
|
92
92
|
}
|
package/remotionlambda-arm64.zip
CHANGED
|
Binary file
|
package/remotionlambda-x64.zip
CHANGED
|
Binary file
|