@remotion/renderer 4.0.0-fastlambda.17 → 4.0.0-fastlambda.18

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.
@@ -24,9 +24,9 @@ const setPropsAndEnv = async ({ inputProps, envVariables, page, serveUrl, initia
24
24
  window.remotion_envVariables = input;
25
25
  }, [JSON.stringify(envVariables)]);
26
26
  }
27
- await page.evaluateOnNewDocument((key, value) => {
28
- window.localStorage.setItem(key, value);
29
- }, [remotion_1.Internals.INITIAL_FRAME_LOCAL_STORAGE_KEY, initialFrame]);
27
+ await page.evaluateOnNewDocument((key) => {
28
+ window.remotion_initialFrame = key;
29
+ }, [initialFrame]);
30
30
  const pageRes = await page.goto(urlToVisit);
31
31
  const status = pageRes.status();
32
32
  if (status !== 200 &&
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remotion/renderer",
3
- "version": "4.0.0-fastlambda.17+ab926ae8d",
3
+ "version": "4.0.0-fastlambda.18+0578f57fa",
4
4
  "description": "Renderer for Remotion",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -20,10 +20,10 @@
20
20
  "url": "https://github.com/remotion-dev/remotion/issues"
21
21
  },
22
22
  "dependencies": {
23
- "@remotion/bundler": "4.0.0-fastlambda.17+ab926ae8d",
23
+ "@remotion/bundler": "4.0.0-fastlambda.18+0578f57fa",
24
24
  "execa": "5.1.1",
25
25
  "puppeteer-core": "13.5.1",
26
- "remotion": "4.0.0-fastlambda.17+ab926ae8d",
26
+ "remotion": "4.0.0-fastlambda.18+0578f57fa",
27
27
  "serve-handler": "6.1.3",
28
28
  "source-map": "^0.8.0-beta.0"
29
29
  },
@@ -60,5 +60,5 @@
60
60
  "publishConfig": {
61
61
  "access": "public"
62
62
  },
63
- "gitHead": "ab926ae8d7255286f77960fd2c508c26b2311c3f"
63
+ "gitHead": "0578f57fa6c718af17cf53db534c3532fc770e42"
64
64
  }