@remotion/bundler 3.3.64 → 3.3.68
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.d.ts +1 -1
- package/dist/index.d.ts +2 -8
- package/dist/webpack-config.d.ts +1 -1
- package/package.json +3 -3
- package/dist/types.d.ts +0 -3
- package/dist/types.js +0 -2
package/dist/bundle.d.ts
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import type { WebpackOverrideFn } from './types';
|
|
2
1
|
import esbuild = require('esbuild');
|
|
3
2
|
import webpack = require('webpack');
|
|
4
3
|
export declare const BundlerInternals: {
|
|
@@ -8,7 +7,7 @@ export declare const BundlerInternals: {
|
|
|
8
7
|
userDefinedComponent: string;
|
|
9
8
|
outDir: string | null;
|
|
10
9
|
environment: "development" | "production";
|
|
11
|
-
webpackOverride: WebpackOverrideFn;
|
|
10
|
+
webpackOverride: import("remotion").WebpackOverrideFn;
|
|
12
11
|
onProgress?: ((f: number) => void) | undefined;
|
|
13
12
|
enableCaching?: boolean | undefined;
|
|
14
13
|
envVariables: Record<string, string>;
|
|
@@ -48,11 +47,6 @@ export declare const BundlerInternals: {
|
|
|
48
47
|
limit: number;
|
|
49
48
|
}) => import("remotion").StaticFile[];
|
|
50
49
|
};
|
|
50
|
+
export { WebpackConfiguration, WebpackOverrideFn } from 'remotion';
|
|
51
51
|
export { bundle, BundleOptions, LegacyBundleOptions } from './bundle';
|
|
52
|
-
export { WebpackConfiguration, WebpackOverrideFn } from './types';
|
|
53
52
|
export { webpack };
|
|
54
|
-
declare global {
|
|
55
|
-
interface RemotionBundlingOptions {
|
|
56
|
-
readonly overrideWebpackConfig: (f: WebpackOverrideFn) => void;
|
|
57
|
-
}
|
|
58
|
-
}
|
package/dist/webpack-config.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { WebpackConfiguration, WebpackOverrideFn } from '
|
|
1
|
+
import type { WebpackConfiguration, WebpackOverrideFn } from 'remotion';
|
|
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;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remotion/bundler",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.68",
|
|
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.68",
|
|
30
30
|
"style-loader": "2.0.0",
|
|
31
31
|
"webpack": "5.74.0"
|
|
32
32
|
},
|
|
@@ -63,5 +63,5 @@
|
|
|
63
63
|
"publishConfig": {
|
|
64
64
|
"access": "public"
|
|
65
65
|
},
|
|
66
|
-
"gitHead": "
|
|
66
|
+
"gitHead": "59a8581847f5de76d5c86668b84b5cf210c6c081"
|
|
67
67
|
}
|
package/dist/types.d.ts
DELETED
package/dist/types.js
DELETED