@remotion/bundler 4.0.0-alpha.130 → 4.0.0-alpha.185

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,6 +1,6 @@
1
1
  import type { StaticFile } from 'remotion';
2
2
  export declare type RenderDefaults = {
3
- quality: number;
3
+ jpegQuality: number;
4
4
  scale: number;
5
5
  logLevel: string;
6
6
  codec: string;
@@ -40,8 +40,7 @@ const remotionCacheLocation = (remotionRoot, environment, hash) => {
40
40
  return path_1.default.join(getWebpackCacheDir(remotionRoot), (0, exports.getWebpackCacheName)(environment, hash));
41
41
  };
42
42
  const clearCache = (remotionRoot) => {
43
- var _a;
44
- return ((_a = fs_1.default.promises.rm) !== null && _a !== void 0 ? _a : fs_1.default.promises.rmdir)(getWebpackCacheDir(remotionRoot), {
43
+ return fs_1.default.promises.rm(getWebpackCacheDir(remotionRoot), {
45
44
  recursive: true,
46
45
  });
47
46
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remotion/bundler",
3
- "version": "4.0.0-alpha.130+167d9bb7f",
3
+ "version": "4.0.0-alpha.185+1b8f0e746",
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.16.12",
28
28
  "react-refresh": "0.9.0",
29
- "remotion": "4.0.0-alpha.130+167d9bb7f",
29
+ "remotion": "4.0.0-alpha.185+1b8f0e746",
30
30
  "style-loader": "2.0.0",
31
31
  "webpack": "5.76.1"
32
32
  },
@@ -63,5 +63,5 @@
63
63
  "publishConfig": {
64
64
  "access": "public"
65
65
  },
66
- "gitHead": "167d9bb7fc36e3cb939dec0e904be7a19a8eebb2"
66
+ "gitHead": "1b8f0e746ea4aa1153c4ecc7bc1063752c405f25"
67
67
  }