remotion 4.0.0-fastlambda.16 → 4.0.0-fastlambda.17

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.
@@ -1,4 +1,4 @@
1
- remotion:build: cache hit, replaying output feeb443969c3b542
1
+ remotion:build: cache hit, replaying output 4a70c480d33626a4
2
2
  remotion:build: 
3
3
  remotion:build: > remotion@3.0.7 build /Users/jonathanburger/remotion/packages/core
4
4
  remotion:build: > tsc -d
@@ -6,13 +6,14 @@ const react_1 = require("react");
6
6
  const shared_audio_tags_1 = require("./audio/shared-audio-tags");
7
7
  const CompositionManager_1 = require("./CompositionManager");
8
8
  const delay_render_1 = require("./delay-render");
9
+ const initial_frame_1 = require("./initial-frame");
9
10
  const nonce_1 = require("./nonce");
10
11
  const random_1 = require("./random");
11
12
  const timeline_position_state_1 = require("./timeline-position-state");
12
13
  const RemotionRoot = ({ children }) => {
13
14
  var _a;
14
15
  const [remotionRootId] = (0, react_1.useState)(() => String((0, random_1.random)(null)));
15
- console.log('INITIAL FRAME', window.remotion_initialFrame);
16
+ console.log('INITIAL FRAME', window.remotion_initialFrame, localStorage.getItem(initial_frame_1.INITIAL_FRAME_LOCAL_STORAGE_KEY));
16
17
  const [frame, setFrame] = (0, react_1.useState)((_a = window.remotion_initialFrame) !== null && _a !== void 0 ? _a : 0);
17
18
  const [playing, setPlaying] = (0, react_1.useState)(false);
18
19
  const imperativePlaying = (0, react_1.useRef)(false);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "remotion",
3
- "version": "4.0.0-fastlambda.16+e28a23235",
3
+ "version": "4.0.0-fastlambda.17+ab926ae8d",
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": "e28a2323503755eb8aa926f1c3f56868e7074366"
58
+ "gitHead": "ab926ae8d7255286f77960fd2c508c26b2311c3f"
59
59
  }