@remotion/lambda 4.0.0-fastlambda.8 → 4.0.0-lambda.1
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/admin/make-layer-public.js +4 -4
- package/dist/api/clean-items.js +2 -5
- package/dist/api/create-function.d.ts +2 -1
- package/dist/api/create-function.js +3 -2
- package/dist/api/deploy-function.d.ts +1 -0
- package/dist/api/deploy-function.js +3 -0
- package/dist/api/get-aws-client.js +5 -1
- package/dist/api/upload-dir.js +4 -3
- package/dist/cli/args.d.ts +1 -0
- package/dist/cli/commands/functions/deploy.js +6 -2
- package/dist/cli/commands/render/render.js +8 -0
- package/dist/cli/index.js +10 -0
- package/dist/defaults.js +5 -1
- package/dist/functions/chunk-optimization/get-frame-ranges-from-profile.d.ts +1 -4
- package/dist/functions/chunk-optimization/optimize-profile.d.ts +2 -8
- package/dist/functions/chunk-optimization/simulate-frame-ranges.d.ts +1 -4
- package/dist/functions/helpers/concat-videos.d.ts +2 -1
- package/dist/functions/helpers/concat-videos.js +7 -2
- package/dist/functions/helpers/create-post-render-data.d.ts +1 -1
- package/dist/functions/helpers/create-post-render-data.js +5 -5
- package/dist/functions/helpers/enhanced-error-info.d.ts +24 -0
- package/dist/functions/helpers/enhanced-error-info.js +2 -0
- package/dist/functions/helpers/get-browser-instance.js +3 -1
- package/dist/functions/helpers/get-files-to-delete.js +2 -2
- package/dist/functions/helpers/get-progress.js +14 -11
- package/dist/functions/helpers/io.js +5 -0
- package/dist/functions/helpers/validate-composition.d.ts +8 -3
- package/dist/functions/helpers/validate-composition.js +6 -1
- package/dist/functions/launch.js +6 -0
- package/dist/functions/renderer.js +3 -5
- package/dist/functions/still.js +6 -0
- package/dist/shared/constants.d.ts +4 -1
- package/dist/shared/constants.js +1 -1
- package/dist/shared/get-most-expensive-chunks.d.ts +8 -0
- package/dist/shared/get-most-expensive-chunks.js +25 -0
- package/dist/shared/hosted-layers.js +80 -80
- package/dist/shared/make-s3-key.d.ts +1 -0
- package/dist/shared/make-s3-key.js +11 -0
- package/dist/shared/p-limit.d.ts +1 -0
- package/dist/shared/p-limit.js +57 -0
- package/dist/shared/random-hash.d.ts +2 -2
- package/dist/shared/random-hash.js +1 -1
- package/dist/shared/stream-to-string.d.ts +1 -0
- package/dist/shared/validate-custom-role-arn.d.ts +1 -0
- package/dist/shared/validate-custom-role-arn.js +11 -0
- package/package.json +10 -12
- package/remotionlambda.zip +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remotion/lambda",
|
|
3
|
-
"version": "4.0.0-
|
|
3
|
+
"version": "4.0.0-lambda.1+5a0913230",
|
|
4
4
|
"description": "Distributed renderer for Remotion based on AWS Lambda",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -31,14 +31,12 @@
|
|
|
31
31
|
"@aws-sdk/client-service-quotas": "3.58.0",
|
|
32
32
|
"@aws-sdk/lib-storage": "3.58.0",
|
|
33
33
|
"@aws-sdk/s3-request-presigner": "3.58.0",
|
|
34
|
-
"@remotion/bundler": "4.0.0-
|
|
35
|
-
"@remotion/cli": "4.0.0-
|
|
36
|
-
"@remotion/renderer": "4.0.0-
|
|
34
|
+
"@remotion/bundler": "4.0.0-lambda.1+5a0913230",
|
|
35
|
+
"@remotion/cli": "4.0.0-lambda.1+5a0913230",
|
|
36
|
+
"@remotion/renderer": "4.0.0-lambda.1+5a0913230",
|
|
37
37
|
"aws-policies": "^1.0.1",
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"p-limit": "^3.1.0",
|
|
41
|
-
"remotion": "4.0.0-fastlambda.8+64cb75673"
|
|
38
|
+
"mime-types": "2.1.34",
|
|
39
|
+
"remotion": "4.0.0-lambda.1+5a0913230"
|
|
42
40
|
},
|
|
43
41
|
"peerDependencies": {
|
|
44
42
|
"react": ">=16.8.0",
|
|
@@ -47,21 +45,21 @@
|
|
|
47
45
|
"devDependencies": {
|
|
48
46
|
"@jonny/eslint-config": "3.0.259",
|
|
49
47
|
"@types/jest": "^27.0.2",
|
|
48
|
+
"@types/mime-types": "2.1.1",
|
|
50
49
|
"@types/minimist": "1.2.2",
|
|
51
50
|
"@types/node": "^14.14.14",
|
|
52
51
|
"@types/prompt": "^1.1.0",
|
|
53
52
|
"eslint": "8.13.0",
|
|
54
|
-
"execa": "5.1.1",
|
|
55
53
|
"jest": "^27.2.4",
|
|
56
54
|
"prettier": "^2.4.1",
|
|
57
55
|
"prettier-plugin-organize-imports": "^2.3.4",
|
|
58
56
|
"ts-jest": "^27.0.5",
|
|
59
|
-
"ts-node": "^
|
|
60
|
-
"typescript": "^4.
|
|
57
|
+
"ts-node": "^10.8.0",
|
|
58
|
+
"typescript": "^4.7.0",
|
|
61
59
|
"zip-lib": "^0.7.2"
|
|
62
60
|
},
|
|
63
61
|
"publishConfig": {
|
|
64
62
|
"access": "public"
|
|
65
63
|
},
|
|
66
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "5a091323018b016b7c05adcd4d3d2a5c9df292a8"
|
|
67
65
|
}
|
package/remotionlambda.zip
CHANGED
|
Binary file
|