@remotion/cli 4.0.424 → 4.0.426

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 (42) hide show
  1. package/dist/benchmark.js +46 -7
  2. package/dist/browser/ensure.js +5 -6
  3. package/dist/bundle.js +10 -3
  4. package/dist/compositions.js +18 -2
  5. package/dist/config/index.d.ts +24 -12
  6. package/dist/config/index.js +23 -51
  7. package/dist/config/number-of-shared-audio-tags.d.ts +2 -0
  8. package/dist/config/number-of-shared-audio-tags.js +12 -0
  9. package/dist/config/preview-server.js +3 -1
  10. package/dist/detect-remotion-server.d.ts +9 -0
  11. package/dist/detect-remotion-server.js +45 -0
  12. package/dist/extra-packages.js +2 -2
  13. package/dist/get-cli-options.d.ts +0 -10
  14. package/dist/get-cli-options.js +13 -33
  15. package/dist/get-composition-with-dimension-override.d.ts +3 -1
  16. package/dist/get-composition-with-dimension-override.js +3 -1
  17. package/dist/get-config-file-name.js +7 -4
  18. package/dist/get-env.js +11 -15
  19. package/dist/get-input-props.js +8 -5
  20. package/dist/get-render-defaults.js +16 -8
  21. package/dist/gpu.js +11 -7
  22. package/dist/index.d.ts +4 -12
  23. package/dist/index.js +9 -3
  24. package/dist/is-port-open.d.ts +1 -0
  25. package/dist/is-port-open.js +24 -0
  26. package/dist/list-of-remotion-packages.js +2 -0
  27. package/dist/parse-command-line.d.ts +0 -458
  28. package/dist/parse-command-line.js +0 -65
  29. package/dist/parsed-cli.d.ts +1104 -1
  30. package/dist/parsed-cli.js +24 -33
  31. package/dist/render-flows/render.d.ts +5 -1
  32. package/dist/render-flows/render.js +12 -1
  33. package/dist/render-flows/still.d.ts +5 -1
  34. package/dist/render-flows/still.js +5 -1
  35. package/dist/render-queue/process-still.js +13 -8
  36. package/dist/render-queue/process-video.js +14 -3
  37. package/dist/render.js +46 -4
  38. package/dist/setup-cache.d.ts +6 -2
  39. package/dist/setup-cache.js +5 -3
  40. package/dist/still.js +31 -3
  41. package/dist/studio.js +11 -18
  42. package/package.json +16 -16
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "url": "https://github.com/remotion-dev/remotion/tree/main/packages/cli"
4
4
  },
5
5
  "name": "@remotion/cli",
6
- "version": "4.0.424",
6
+ "version": "4.0.426",
7
7
  "description": "Control Remotion features using the `npx remotion` command",
8
8
  "main": "dist/index.js",
9
9
  "sideEffects": false,
@@ -13,7 +13,7 @@
13
13
  "remotiond": "remotiond-cli.js"
14
14
  },
15
15
  "scripts": {
16
- "formatting": "prettier --experimental-cli src --check",
16
+ "formatting": "prettier src --check",
17
17
  "lint": "eslint src",
18
18
  "test": "bun test src",
19
19
  "make": "tsgo -d"
@@ -36,17 +36,17 @@
36
36
  "author": "Jonny Burger <jonny@remotion.dev>",
37
37
  "license": "SEE LICENSE IN LICENSE.md",
38
38
  "dependencies": {
39
- "@remotion/bundler": "4.0.424",
40
- "@remotion/media-utils": "4.0.424",
41
- "@remotion/player": "4.0.424",
42
- "@remotion/renderer": "4.0.424",
43
- "@remotion/studio-shared": "4.0.424",
44
- "@remotion/studio-server": "4.0.424",
45
- "@remotion/studio": "4.0.424",
39
+ "@remotion/bundler": "4.0.426",
40
+ "@remotion/media-utils": "4.0.426",
41
+ "@remotion/player": "4.0.426",
42
+ "@remotion/renderer": "4.0.426",
43
+ "@remotion/studio-shared": "4.0.426",
44
+ "@remotion/studio-server": "4.0.426",
45
+ "@remotion/studio": "4.0.426",
46
46
  "dotenv": "17.3.1",
47
47
  "minimist": "1.2.6",
48
48
  "prompts": "2.4.2",
49
- "remotion": "4.0.424"
49
+ "remotion": "4.0.426"
50
50
  },
51
51
  "peerDependencies": {
52
52
  "react": ">=16.8.0",
@@ -57,14 +57,14 @@
57
57
  "@types/prompts": "^2.4.1",
58
58
  "@types/prettier": "^2.7.2",
59
59
  "@types/node": "20.12.14",
60
- "@remotion/zod-types": "4.0.424",
61
- "@remotion/tailwind-v4": "4.0.424",
62
- "@remotion/enable-scss": "4.0.424",
63
- "@remotion/skia": "4.0.424",
60
+ "@remotion/zod-types": "4.0.426",
61
+ "@remotion/tailwind-v4": "4.0.426",
62
+ "@remotion/enable-scss": "4.0.426",
63
+ "@remotion/skia": "4.0.426",
64
64
  "react": "19.2.3",
65
65
  "react-dom": "19.2.3",
66
- "zod": "3.22.3",
67
- "@remotion/eslint-config-internal": "4.0.424",
66
+ "zod": "4.3.6",
67
+ "@remotion/eslint-config-internal": "4.0.426",
68
68
  "eslint": "9.19.0",
69
69
  "@typescript/native-preview": "7.0.0-dev.20260217.1"
70
70
  },