@remotion/bundler 4.0.86 → 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.
- package/dist/index-html.d.ts +1 -0
- package/dist/webpack-cache.js +2 -1
- package/package.json +2 -2
package/dist/index-html.d.ts
CHANGED
package/dist/webpack-cache.js
CHANGED
|
@@ -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
|
|
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.
|
|
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.
|
|
26
|
+
"remotion": "4.0.88"
|
|
27
27
|
},
|
|
28
28
|
"peerDependencies": {
|
|
29
29
|
"react": ">=16.8.0",
|