@remotion/bundler 3.3.58 → 3.3.59
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/bundle.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/webpack-config.d.ts +1 -1
- package/dist/webpack-config.js +1 -1
- package/package.json +3 -3
package/dist/bundle.js
CHANGED
|
@@ -43,7 +43,7 @@ const prepareOutDir = async (specified) => {
|
|
|
43
43
|
await fs_1.default.promises.mkdir(specified, { recursive: true });
|
|
44
44
|
return specified;
|
|
45
45
|
}
|
|
46
|
-
return fs_1.default.promises.mkdtemp(path_1.default.join(os_1.default.tmpdir(), '
|
|
46
|
+
return fs_1.default.promises.mkdtemp(path_1.default.join(os_1.default.tmpdir(), 'remotion-webpack-bundle-'));
|
|
47
47
|
};
|
|
48
48
|
const trimLeadingSlash = (p) => {
|
|
49
49
|
if (p.startsWith('/')) {
|
package/dist/index.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ export declare const BundlerInternals: {
|
|
|
6
6
|
webpackConfig: ({ entry, userDefinedComponent, outDir, environment, webpackOverride, onProgress, enableCaching, envVariables, maxTimelineTracks, entryPoints, remotionRoot, keyboardShortcutsEnabled, poll, }: {
|
|
7
7
|
entry: string;
|
|
8
8
|
userDefinedComponent: string;
|
|
9
|
-
outDir: string;
|
|
9
|
+
outDir: string | null;
|
|
10
10
|
environment: "development" | "production";
|
|
11
11
|
webpackOverride: WebpackOverrideFn;
|
|
12
12
|
onProgress?: ((f: number) => void) | undefined;
|
package/dist/webpack-config.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import type { WebpackConfiguration, WebpackOverrideFn } from './types';
|
|
|
2
2
|
export declare const webpackConfig: ({ entry, userDefinedComponent, outDir, environment, webpackOverride, onProgress, enableCaching, envVariables, maxTimelineTracks, entryPoints, remotionRoot, keyboardShortcutsEnabled, poll, }: {
|
|
3
3
|
entry: string;
|
|
4
4
|
userDefinedComponent: string;
|
|
5
|
-
outDir: string;
|
|
5
|
+
outDir: string | null;
|
|
6
6
|
environment: 'development' | 'production';
|
|
7
7
|
webpackOverride: WebpackOverrideFn;
|
|
8
8
|
onProgress?: ((f: number) => void) | undefined;
|
package/dist/webpack-config.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remotion/bundler",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.59",
|
|
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": "3.3.
|
|
29
|
+
"remotion": "3.3.59",
|
|
30
30
|
"style-loader": "2.0.0",
|
|
31
31
|
"webpack": "5.74.0"
|
|
32
32
|
},
|
|
@@ -64,5 +64,5 @@
|
|
|
64
64
|
"publishConfig": {
|
|
65
65
|
"access": "public"
|
|
66
66
|
},
|
|
67
|
-
"gitHead": "
|
|
67
|
+
"gitHead": "4ee88b056704d7224838a8fbc32d2d3522c5afbe"
|
|
68
68
|
}
|