@remotion/lambda 4.0.0-fastlambda.8 → 4.0.0-lambda.3

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.
Files changed (48) hide show
  1. package/dist/admin/make-layer-public.js +4 -4
  2. package/dist/api/clean-items.js +2 -5
  3. package/dist/api/create-function.d.ts +2 -1
  4. package/dist/api/create-function.js +3 -2
  5. package/dist/api/deploy-function.d.ts +1 -0
  6. package/dist/api/deploy-function.js +3 -0
  7. package/dist/api/get-aws-client.js +5 -1
  8. package/dist/api/upload-dir.js +4 -3
  9. package/dist/cli/args.d.ts +1 -0
  10. package/dist/cli/commands/functions/deploy.js +6 -2
  11. package/dist/cli/commands/render/render.js +8 -0
  12. package/dist/cli/index.js +10 -0
  13. package/dist/defaults.js +5 -1
  14. package/dist/functions/chunk-optimization/get-frame-ranges-from-profile.d.ts +1 -4
  15. package/dist/functions/chunk-optimization/optimize-profile.d.ts +2 -8
  16. package/dist/functions/chunk-optimization/plan-frame-ranges.d.ts +1 -4
  17. package/dist/functions/chunk-optimization/simulate-frame-ranges.d.ts +1 -4
  18. package/dist/functions/helpers/concat-videos.d.ts +2 -1
  19. package/dist/functions/helpers/concat-videos.js +7 -2
  20. package/dist/functions/helpers/create-post-render-data.d.ts +1 -1
  21. package/dist/functions/helpers/create-post-render-data.js +5 -5
  22. package/dist/functions/helpers/enhanced-error-info.d.ts +24 -0
  23. package/dist/functions/helpers/enhanced-error-info.js +2 -0
  24. package/dist/functions/helpers/get-browser-instance.js +3 -1
  25. package/dist/functions/helpers/get-files-to-delete.js +2 -2
  26. package/dist/functions/helpers/get-progress.js +14 -11
  27. package/dist/functions/helpers/io.js +5 -0
  28. package/dist/functions/helpers/validate-composition.d.ts +8 -3
  29. package/dist/functions/helpers/validate-composition.js +6 -1
  30. package/dist/functions/launch.js +6 -0
  31. package/dist/functions/renderer.js +3 -5
  32. package/dist/functions/still.js +6 -0
  33. package/dist/shared/constants.d.ts +4 -1
  34. package/dist/shared/constants.js +1 -1
  35. package/dist/shared/get-most-expensive-chunks.d.ts +8 -0
  36. package/dist/shared/get-most-expensive-chunks.js +25 -0
  37. package/dist/shared/hosted-layers.js +80 -80
  38. package/dist/shared/make-s3-key.d.ts +1 -0
  39. package/dist/shared/make-s3-key.js +11 -0
  40. package/dist/shared/p-limit.d.ts +1 -0
  41. package/dist/shared/p-limit.js +57 -0
  42. package/dist/shared/random-hash.d.ts +2 -2
  43. package/dist/shared/random-hash.js +1 -1
  44. package/dist/shared/stream-to-string.d.ts +1 -0
  45. package/dist/shared/validate-custom-role-arn.d.ts +1 -0
  46. package/dist/shared/validate-custom-role-arn.js +11 -0
  47. package/package.json +10 -12
  48. 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-fastlambda.8+64cb75673",
3
+ "version": "4.0.0-lambda.3+32da0b782",
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-fastlambda.8+64cb75673",
35
- "@remotion/cli": "4.0.0-fastlambda.8+64cb75673",
36
- "@remotion/renderer": "4.0.0-fastlambda.8+64cb75673",
34
+ "@remotion/bundler": "4.0.0-lambda.3+32da0b782",
35
+ "@remotion/cli": "4.0.0-lambda.3+32da0b782",
36
+ "@remotion/renderer": "4.0.0-lambda.3+32da0b782",
37
37
  "aws-policies": "^1.0.1",
38
- "dotenv": "^10.0.0",
39
- "minimist": "1.2.6",
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.3+32da0b782"
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": "^9.1.1",
60
- "typescript": "^4.5.5",
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": "64cb756734b43bfdfae52544d40255c31a4a51c3"
64
+ "gitHead": "32da0b782094e5eac82cdc1b1469a80bb763b392"
67
65
  }
Binary file