@remotion/cli 4.0.461 → 4.0.462
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/extra-packages.js
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.EXTRA_PACKAGES_DOCS = exports.EXTRA_PACKAGES = void 0;
|
|
4
4
|
exports.EXTRA_PACKAGES = {
|
|
5
|
-
mediabunny: '1.
|
|
6
|
-
'@mediabunny/ac3': '1.
|
|
7
|
-
'@mediabunny/mp3-encoder': '1.
|
|
8
|
-
'@mediabunny/aac-encoder': '1.
|
|
9
|
-
'@mediabunny/flac-encoder': '1.
|
|
5
|
+
mediabunny: '1.45.0',
|
|
6
|
+
'@mediabunny/ac3': '1.45.0',
|
|
7
|
+
'@mediabunny/mp3-encoder': '1.45.0',
|
|
8
|
+
'@mediabunny/aac-encoder': '1.45.0',
|
|
9
|
+
'@mediabunny/flac-encoder': '1.45.0',
|
|
10
10
|
zod: '4.3.6',
|
|
11
11
|
};
|
|
12
12
|
exports.EXTRA_PACKAGES_DOCS = {
|
package/dist/setup-cache.js
CHANGED
|
@@ -114,6 +114,8 @@ const bundleOnCli = async ({ fullPath, remotionRoot, publicDir, onProgressCallba
|
|
|
114
114
|
askAIEnabled,
|
|
115
115
|
keyboardShortcutsEnabled,
|
|
116
116
|
rspack,
|
|
117
|
+
// Ephemeral CLI bundles (render/still/compositions/benchmark) use a temp dir; symlink avoids copying huge public folders. `npx remotion bundle` passes a fixed outDir and keeps deep copy for deployable output.
|
|
118
|
+
symlinkPublicDir: outDir === null,
|
|
117
119
|
};
|
|
118
120
|
const [hash] = await bundler_1.BundlerInternals.getConfig({
|
|
119
121
|
outDir: '',
|
package/package.json
CHANGED
|
@@ -3,10 +3,9 @@
|
|
|
3
3
|
"url": "https://github.com/remotion-dev/remotion/tree/main/packages/cli"
|
|
4
4
|
},
|
|
5
5
|
"name": "@remotion/cli",
|
|
6
|
-
"version": "4.0.
|
|
6
|
+
"version": "4.0.462",
|
|
7
7
|
"description": "Control Remotion features using the `npx remotion` command",
|
|
8
8
|
"main": "dist/index.js",
|
|
9
|
-
"sideEffects": false,
|
|
10
9
|
"bin": {
|
|
11
10
|
"remotion": "remotion-cli.js",
|
|
12
11
|
"remotionb": "remotionb-cli.js",
|
|
@@ -37,17 +36,17 @@
|
|
|
37
36
|
"author": "Jonny Burger <jonny@remotion.dev>",
|
|
38
37
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
39
38
|
"dependencies": {
|
|
40
|
-
"@remotion/bundler": "4.0.
|
|
41
|
-
"@remotion/media-utils": "4.0.
|
|
42
|
-
"@remotion/player": "4.0.
|
|
43
|
-
"@remotion/renderer": "4.0.
|
|
44
|
-
"@remotion/studio-shared": "4.0.
|
|
45
|
-
"@remotion/studio-server": "4.0.
|
|
46
|
-
"@remotion/studio": "4.0.
|
|
39
|
+
"@remotion/bundler": "4.0.462",
|
|
40
|
+
"@remotion/media-utils": "4.0.462",
|
|
41
|
+
"@remotion/player": "4.0.462",
|
|
42
|
+
"@remotion/renderer": "4.0.462",
|
|
43
|
+
"@remotion/studio-shared": "4.0.462",
|
|
44
|
+
"@remotion/studio-server": "4.0.462",
|
|
45
|
+
"@remotion/studio": "4.0.462",
|
|
47
46
|
"dotenv": "17.3.1",
|
|
48
47
|
"minimist": "1.2.6",
|
|
49
48
|
"prompts": "2.4.2",
|
|
50
|
-
"remotion": "4.0.
|
|
49
|
+
"remotion": "4.0.462"
|
|
51
50
|
},
|
|
52
51
|
"peerDependencies": {
|
|
53
52
|
"react": ">=16.8.0",
|
|
@@ -58,14 +57,14 @@
|
|
|
58
57
|
"@types/prompts": "2.4.9",
|
|
59
58
|
"@types/prettier": "2.7.2",
|
|
60
59
|
"@types/node": "20.12.14",
|
|
61
|
-
"@remotion/zod-types": "4.0.
|
|
62
|
-
"@remotion/tailwind-v4": "4.0.
|
|
63
|
-
"@remotion/enable-scss": "4.0.
|
|
64
|
-
"@remotion/skia": "4.0.
|
|
60
|
+
"@remotion/zod-types": "4.0.462",
|
|
61
|
+
"@remotion/tailwind-v4": "4.0.462",
|
|
62
|
+
"@remotion/enable-scss": "4.0.462",
|
|
63
|
+
"@remotion/skia": "4.0.462",
|
|
65
64
|
"react": "19.2.3",
|
|
66
65
|
"react-dom": "19.2.3",
|
|
67
66
|
"zod": "4.3.6",
|
|
68
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
67
|
+
"@remotion/eslint-config-internal": "4.0.462",
|
|
69
68
|
"eslint": "9.19.0",
|
|
70
69
|
"@typescript/native-preview": "7.0.0-dev.20260217.1"
|
|
71
70
|
},
|