@remotion/bundler 3.3.53 → 3.3.55
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 +4 -0
- package/dist/bundle.js +4 -0
- package/package.json +3 -3
package/dist/bundle.d.ts
CHANGED
|
@@ -27,5 +27,9 @@ declare type Arguments = [options: BundleOptions] | [
|
|
|
27
27
|
onProgress?: (progress: number) => void,
|
|
28
28
|
options?: LegacyBundleOptions
|
|
29
29
|
];
|
|
30
|
+
/**
|
|
31
|
+
* @description The method bundles a Remotion project using Webpack and prepares it for rendering using renderMedia()
|
|
32
|
+
* @see [Documentation](https://www.remotion.dev/docs/bundle)
|
|
33
|
+
*/
|
|
30
34
|
export declare function bundle(...args: Arguments): Promise<string>;
|
|
31
35
|
export {};
|
package/dist/bundle.js
CHANGED
|
@@ -120,6 +120,10 @@ const validateEntryPoint = async (entryPoint) => {
|
|
|
120
120
|
].join(' '));
|
|
121
121
|
}
|
|
122
122
|
};
|
|
123
|
+
/**
|
|
124
|
+
* @description The method bundles a Remotion project using Webpack and prepares it for rendering using renderMedia()
|
|
125
|
+
* @see [Documentation](https://www.remotion.dev/docs/bundle)
|
|
126
|
+
*/
|
|
123
127
|
async function bundle(...args) {
|
|
124
128
|
var _a, _b, _c, _d;
|
|
125
129
|
const actualArgs = convertArgumentsIntoOptions(args);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remotion/bundler",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.55",
|
|
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.55",
|
|
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": "4cecccc293e9c906c693f55fac65df8f1cfd2338"
|
|
68
68
|
}
|