@remotion/renderer 4.0.259 → 4.0.260
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/browser/BrowserRunner.js +2 -2
- package/package.json +13 -13
|
@@ -233,7 +233,7 @@ function waitForWSEndpoint({ browserProcess, timeout, logLevel, indent, }) {
|
|
|
233
233
|
() => browserStderr.removeListener('close', onClose),
|
|
234
234
|
(0, util_1.addEventListener)(browserProcess, 'exit', (code, signal) => {
|
|
235
235
|
logger_1.Log.verbose({ indent, logLevel }, 'Browser process exited with code', code, 'signal', signal);
|
|
236
|
-
return onClose();
|
|
236
|
+
return onClose(new Error(`Closed with ${code} signal: ${signal}`));
|
|
237
237
|
}),
|
|
238
238
|
(0, util_1.addEventListener)(browserProcess, 'error', (error) => {
|
|
239
239
|
return onClose(error);
|
|
@@ -244,7 +244,7 @@ function waitForWSEndpoint({ browserProcess, timeout, logLevel, indent, }) {
|
|
|
244
244
|
cleanup();
|
|
245
245
|
reject(new Error([
|
|
246
246
|
'Failed to launch the browser process!',
|
|
247
|
-
error ? error.
|
|
247
|
+
error ? error.stack : null,
|
|
248
248
|
stderrString,
|
|
249
249
|
'Troubleshooting: https://remotion.dev/docs/troubleshooting/browser-launch',
|
|
250
250
|
]
|
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.260",
|
|
7
7
|
"description": "Render Remotion videos using Node.js or Bun",
|
|
8
8
|
"main": "dist/index.js",
|
|
9
9
|
"types": "dist/index.d.ts",
|
|
@@ -18,8 +18,8 @@
|
|
|
18
18
|
"extract-zip": "2.0.1",
|
|
19
19
|
"source-map": "^0.8.0-beta.0",
|
|
20
20
|
"ws": "8.17.1",
|
|
21
|
-
"remotion": "4.0.
|
|
22
|
-
"@remotion/streaming": "4.0.
|
|
21
|
+
"remotion": "4.0.260",
|
|
22
|
+
"@remotion/streaming": "4.0.260"
|
|
23
23
|
},
|
|
24
24
|
"peerDependencies": {
|
|
25
25
|
"react": ">=16.8.0",
|
|
@@ -32,18 +32,18 @@
|
|
|
32
32
|
"react": "19.0.0",
|
|
33
33
|
"react-dom": "19.0.0",
|
|
34
34
|
"@types/ws": "8.5.10",
|
|
35
|
-
"eslint": "9.
|
|
36
|
-
"@remotion/example-videos": "4.0.
|
|
37
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
35
|
+
"eslint": "9.19.0",
|
|
36
|
+
"@remotion/example-videos": "4.0.260",
|
|
37
|
+
"@remotion/eslint-config-internal": "4.0.260"
|
|
38
38
|
},
|
|
39
39
|
"optionalDependencies": {
|
|
40
|
-
"@remotion/compositor-darwin-arm64": "4.0.
|
|
41
|
-
"@remotion/compositor-darwin-x64": "4.0.
|
|
42
|
-
"@remotion/compositor-linux-arm64-gnu": "4.0.
|
|
43
|
-
"@remotion/compositor-linux-arm64-musl": "4.0.
|
|
44
|
-
"@remotion/compositor-
|
|
45
|
-
"@remotion/compositor-linux-x64-musl": "4.0.
|
|
46
|
-
"@remotion/compositor-
|
|
40
|
+
"@remotion/compositor-darwin-arm64": "4.0.260",
|
|
41
|
+
"@remotion/compositor-darwin-x64": "4.0.260",
|
|
42
|
+
"@remotion/compositor-linux-arm64-gnu": "4.0.260",
|
|
43
|
+
"@remotion/compositor-linux-arm64-musl": "4.0.260",
|
|
44
|
+
"@remotion/compositor-linux-x64-gnu": "4.0.260",
|
|
45
|
+
"@remotion/compositor-linux-x64-musl": "4.0.260",
|
|
46
|
+
"@remotion/compositor-win32-x64-msvc": "4.0.260"
|
|
47
47
|
},
|
|
48
48
|
"keywords": [
|
|
49
49
|
"remotion",
|