@remotion/bundler 4.0.166 → 4.0.168
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/package.json +4 -4
- package/renderEntry.tsx +3 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remotion/bundler",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.168",
|
|
4
4
|
"description": "Bundler for Remotion",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -25,9 +25,9 @@
|
|
|
25
25
|
"style-loader": "2.0.0",
|
|
26
26
|
"source-map": "0.7.3",
|
|
27
27
|
"webpack": "5.83.1",
|
|
28
|
-
"remotion": "4.0.
|
|
29
|
-
"@remotion/studio
|
|
30
|
-
"@remotion/studio": "4.0.
|
|
28
|
+
"remotion": "4.0.168",
|
|
29
|
+
"@remotion/studio": "4.0.168",
|
|
30
|
+
"@remotion/studio-shared": "4.0.168"
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|
|
33
33
|
"react": ">=16.8.0",
|
package/renderEntry.tsx
CHANGED
|
@@ -190,6 +190,9 @@ const GetVideo: React.FC<{state: BundleState}> = ({state}) => {
|
|
|
190
190
|
|
|
191
191
|
const waitForRootHandle = delayRender(
|
|
192
192
|
'Loading root component - See https://remotion.dev/docs/troubleshooting/loading-root-component if you experience a timeout',
|
|
193
|
+
{
|
|
194
|
+
timeoutInMilliseconds: 10000,
|
|
195
|
+
},
|
|
193
196
|
);
|
|
194
197
|
|
|
195
198
|
const videoContainer = document.getElementById(
|