remotion 4.0.0-fastlambda.5 → 4.0.0-fastlambda.6
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/.turbo/turbo-build.log +5 -5
- package/dist/Img.js +6 -0
- package/package.json +2 -2
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
[
|
|
2
|
-
[
|
|
3
|
-
[
|
|
4
|
-
[
|
|
5
|
-
[
|
|
1
|
+
[35mremotion:build: [0mcache hit, replaying output [2m977659a5ad5e4b07[0m
|
|
2
|
+
[35mremotion:build: [0m
|
|
3
|
+
[35mremotion:build: [0m> remotion@3.0.7 build /Users/jonathanburger/remotion/packages/core
|
|
4
|
+
[35mremotion:build: [0m> tsc -d
|
|
5
|
+
[35mremotion:build: [0m
|
package/dist/Img.js
CHANGED
|
@@ -25,6 +25,12 @@ const ImgRefForwarding = ({ onLoad, onError, ...props }, ref) => {
|
|
|
25
25
|
console.error('Error loading image:', e, 'Handle the event using the onError() prop to make this message disappear.');
|
|
26
26
|
}
|
|
27
27
|
}, [handle, onError]);
|
|
28
|
+
(0, react_1.useEffect)(() => {
|
|
29
|
+
return () => {
|
|
30
|
+
(0, delay_render_1.continueRender)(handle);
|
|
31
|
+
console.log('unmounting');
|
|
32
|
+
};
|
|
33
|
+
}, []);
|
|
28
34
|
return (0, jsx_runtime_1.jsx)("img", { ...props, ref: ref, onLoad: didLoad, onError: didGetError }, void 0);
|
|
29
35
|
};
|
|
30
36
|
exports.Img = (0, react_1.forwardRef)(ImgRefForwarding);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "remotion",
|
|
3
|
-
"version": "4.0.0-fastlambda.
|
|
3
|
+
"version": "4.0.0-fastlambda.6+3b694d162",
|
|
4
4
|
"description": "Render videos in React",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -55,5 +55,5 @@
|
|
|
55
55
|
"publishConfig": {
|
|
56
56
|
"access": "public"
|
|
57
57
|
},
|
|
58
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "3b694d16238f7ecf4056bcca4435489dae534aa6"
|
|
59
59
|
}
|