@remotion/bundler 4.0.87 → 4.0.88

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.
@@ -31,6 +31,7 @@ export type RenderDefaults = {
31
31
  colorSpace: string;
32
32
  multiProcessOnLinux: boolean;
33
33
  beepOnFinish: boolean;
34
+ repro: boolean;
34
35
  };
35
36
  declare global {
36
37
  interface Window {
@@ -6,6 +6,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
6
6
  exports.cacheExists = exports.clearCache = exports.getWebpackCacheName = exports.getWebpackCacheEnvDir = void 0;
7
7
  const node_fs_1 = __importDefault(require("node:fs"));
8
8
  const node_path_1 = __importDefault(require("node:path"));
9
+ const version_1 = require("remotion/version");
9
10
  // Inlined from https://github.com/webpack/webpack/blob/4c2ee7a4ddb8db2362ca83b6c4190523387ba7ee/lib/config/defaults.js#L265
10
11
  // An algorithm to determine where Webpack will cache the depencies
11
12
  const getWebpackCacheDir = (remotionRoot) => {
@@ -37,7 +38,7 @@ const getWebpackCacheDir = (remotionRoot) => {
37
38
  return node_path_1.default.resolve(dir, 'node_modules/.cache/webpack');
38
39
  };
39
40
  const getPrefix = (environment) => {
40
- return `remotion-v5-${environment}`;
41
+ return `remotion-${environment}-${version_1.VERSION}`;
41
42
  };
42
43
  const getWebpackCacheEnvDir = (environment) => {
43
44
  return getPrefix(environment);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remotion/bundler",
3
- "version": "4.0.87",
3
+ "version": "4.0.88",
4
4
  "description": "Bundler for Remotion",
5
5
  "main": "dist/index.js",
6
6
  "sideEffects": false,
@@ -23,7 +23,7 @@
23
23
  "react-refresh": "0.9.0",
24
24
  "style-loader": "2.0.0",
25
25
  "webpack": "5.83.1",
26
- "remotion": "4.0.87"
26
+ "remotion": "4.0.88"
27
27
  },
28
28
  "peerDependencies": {
29
29
  "react": ">=16.8.0",