@remotion/bundler 3.2.4 → 3.2.9
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/renderEntry.js +8 -0
- package/package.json +3 -3
package/dist/renderEntry.js
CHANGED
|
@@ -34,6 +34,13 @@ const GetVideo = ({ state }) => {
|
|
|
34
34
|
throw new Error('Found no composition with the name ' + state.compositionName);
|
|
35
35
|
}
|
|
36
36
|
compositions.setCurrentComposition((_a = foundComposition === null || foundComposition === void 0 ? void 0 : foundComposition.id) !== null && _a !== void 0 ? _a : null);
|
|
37
|
+
compositions.setCurrentCompositionMetadata({
|
|
38
|
+
defaultProps: state.compositionDefaultProps,
|
|
39
|
+
durationInFrames: state.compositionDurationInFrames,
|
|
40
|
+
fps: state.compositionFps,
|
|
41
|
+
height: state.compositionHeight,
|
|
42
|
+
width: state.compositionWidth,
|
|
43
|
+
});
|
|
37
44
|
}
|
|
38
45
|
}, [compositions, compositions.compositions, state, video]);
|
|
39
46
|
(0, react_1.useEffect)(() => {
|
|
@@ -168,5 +175,6 @@ if (typeof window !== 'undefined') {
|
|
|
168
175
|
});
|
|
169
176
|
};
|
|
170
177
|
window.siteVersion = '4';
|
|
178
|
+
window.remotion_version = remotion_1.VERSION;
|
|
171
179
|
window.setBundleMode = exports.setBundleModeAndUpdate;
|
|
172
180
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remotion/bundler",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.9",
|
|
4
4
|
"description": "Bundler for Remotion",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"css-loader": "5.2.7",
|
|
27
27
|
"esbuild": "0.14.19",
|
|
28
28
|
"react-refresh": "0.9.0",
|
|
29
|
-
"remotion": "3.2.
|
|
29
|
+
"remotion": "3.2.9",
|
|
30
30
|
"style-loader": "2.0.0",
|
|
31
31
|
"webpack": "5.72.0"
|
|
32
32
|
},
|
|
@@ -63,5 +63,5 @@
|
|
|
63
63
|
"publishConfig": {
|
|
64
64
|
"access": "public"
|
|
65
65
|
},
|
|
66
|
-
"gitHead": "
|
|
66
|
+
"gitHead": "66eceb7252865747a2808fc51cdbd2b57bb38486"
|
|
67
67
|
}
|