@remotion/renderer 4.0.408 → 4.0.409
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/esm/client.mjs
CHANGED
|
@@ -1834,7 +1834,7 @@ var keyboardShortcutsOption = {
|
|
|
1834
1834
|
type: false,
|
|
1835
1835
|
getValue: ({ commandLine }) => {
|
|
1836
1836
|
if (commandLine[cliFlag29] !== undefined) {
|
|
1837
|
-
keyboardShortcutsEnabled = false;
|
|
1837
|
+
keyboardShortcutsEnabled = commandLine[cliFlag29] === false;
|
|
1838
1838
|
return {
|
|
1839
1839
|
value: keyboardShortcutsEnabled,
|
|
1840
1840
|
source: "cli"
|
|
@@ -13,7 +13,7 @@ exports.keyboardShortcutsOption = {
|
|
|
13
13
|
type: false,
|
|
14
14
|
getValue: ({ commandLine }) => {
|
|
15
15
|
if (commandLine[cliFlag] !== undefined) {
|
|
16
|
-
keyboardShortcutsEnabled = false;
|
|
16
|
+
keyboardShortcutsEnabled = commandLine[cliFlag] === false;
|
|
17
17
|
return {
|
|
18
18
|
value: keyboardShortcutsEnabled,
|
|
19
19
|
source: 'cli',
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"url": "https://github.com/remotion-dev/remotion/tree/main/packages/renderer"
|
|
4
4
|
},
|
|
5
5
|
"name": "@remotion/renderer",
|
|
6
|
-
"version": "4.0.
|
|
6
|
+
"version": "4.0.409",
|
|
7
7
|
"description": "Render Remotion videos using Node.js or Bun",
|
|
8
8
|
"main": "dist/index.js",
|
|
9
9
|
"types": "dist/index.d.ts",
|
|
@@ -23,11 +23,11 @@
|
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"execa": "5.1.1",
|
|
25
25
|
"extract-zip": "2.0.1",
|
|
26
|
-
"remotion": "4.0.
|
|
27
|
-
"@remotion/streaming": "4.0.
|
|
26
|
+
"remotion": "4.0.409",
|
|
27
|
+
"@remotion/streaming": "4.0.409",
|
|
28
28
|
"source-map": "^0.8.0-beta.0",
|
|
29
29
|
"ws": "8.17.1",
|
|
30
|
-
"@remotion/licensing": "4.0.
|
|
30
|
+
"@remotion/licensing": "4.0.409"
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|
|
33
33
|
"react": ">=16.8.0",
|
|
@@ -41,19 +41,19 @@
|
|
|
41
41
|
"react-dom": "19.2.3",
|
|
42
42
|
"@typescript/native-preview": "7.0.0-dev.20260105.1",
|
|
43
43
|
"@types/ws": "8.5.10",
|
|
44
|
-
"@remotion/example-videos": "4.0.
|
|
45
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
44
|
+
"@remotion/example-videos": "4.0.409",
|
|
45
|
+
"@remotion/eslint-config-internal": "4.0.409",
|
|
46
46
|
"eslint": "9.19.0",
|
|
47
47
|
"@types/node": "20.12.14"
|
|
48
48
|
},
|
|
49
49
|
"optionalDependencies": {
|
|
50
|
-
"@remotion/compositor-darwin-arm64": "4.0.
|
|
51
|
-
"@remotion/compositor-darwin-x64": "4.0.
|
|
52
|
-
"@remotion/compositor-linux-arm64-gnu": "4.0.
|
|
53
|
-
"@remotion/compositor-linux-arm64-musl": "4.0.
|
|
54
|
-
"@remotion/compositor-linux-x64-gnu": "4.0.
|
|
55
|
-
"@remotion/compositor-linux-x64-musl": "4.0.
|
|
56
|
-
"@remotion/compositor-win32-x64-msvc": "4.0.
|
|
50
|
+
"@remotion/compositor-darwin-arm64": "4.0.409",
|
|
51
|
+
"@remotion/compositor-darwin-x64": "4.0.409",
|
|
52
|
+
"@remotion/compositor-linux-arm64-gnu": "4.0.409",
|
|
53
|
+
"@remotion/compositor-linux-arm64-musl": "4.0.409",
|
|
54
|
+
"@remotion/compositor-linux-x64-gnu": "4.0.409",
|
|
55
|
+
"@remotion/compositor-linux-x64-musl": "4.0.409",
|
|
56
|
+
"@remotion/compositor-win32-x64-msvc": "4.0.409"
|
|
57
57
|
},
|
|
58
58
|
"keywords": [
|
|
59
59
|
"remotion",
|