@remotion/bundler 4.0.421 → 4.0.423
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 +2 -1
- package/dist/index-html.js +4 -1
- package/dist/index.d.ts +2 -1
- package/dist/webpack-config.js +1 -0
- package/package.json +6 -6
package/dist/index-html.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { GitSource, PackageManager, RenderDefaults } from '@remotion/studio-shared';
|
|
2
2
|
import type { LogLevel, StaticFile } from 'remotion';
|
|
3
|
-
export declare const indexHtml: ({ publicPath, editorName, inputProps, envVariables, staticHash, remotionRoot, studioServerCommand, renderQueue, numberOfAudioTags, publicFiles, includeFavicon, title, renderDefaults, publicFolderExists, gitSource, projectName, installedDependencies, packageManager, audioLatencyHint, logLevel, mode, }: {
|
|
3
|
+
export declare const indexHtml: ({ publicPath, editorName, inputProps, envVariables, staticHash, remotionRoot, studioServerCommand, renderQueue, completedClientRenders, numberOfAudioTags, publicFiles, includeFavicon, title, renderDefaults, publicFolderExists, gitSource, projectName, installedDependencies, packageManager, audioLatencyHint, logLevel, mode, }: {
|
|
4
4
|
staticHash: string;
|
|
5
5
|
publicPath: string;
|
|
6
6
|
editorName: string | null;
|
|
@@ -9,6 +9,7 @@ export declare const indexHtml: ({ publicPath, editorName, inputProps, envVariab
|
|
|
9
9
|
remotionRoot: string;
|
|
10
10
|
studioServerCommand: string | null;
|
|
11
11
|
renderQueue: unknown | null;
|
|
12
|
+
completedClientRenders?: unknown | null;
|
|
12
13
|
numberOfAudioTags: number;
|
|
13
14
|
audioLatencyHint: AudioContextLatencyCategory;
|
|
14
15
|
publicFiles: StaticFile[];
|
package/dist/index-html.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.indexHtml = void 0;
|
|
4
4
|
const remotion_1 = require("remotion");
|
|
5
|
-
const indexHtml = ({ publicPath, editorName, inputProps, envVariables, staticHash, remotionRoot, studioServerCommand, renderQueue, numberOfAudioTags, publicFiles, includeFavicon, title, renderDefaults, publicFolderExists, gitSource, projectName, installedDependencies, packageManager, audioLatencyHint, logLevel, mode, }) =>
|
|
5
|
+
const indexHtml = ({ publicPath, editorName, inputProps, envVariables, staticHash, remotionRoot, studioServerCommand, renderQueue, completedClientRenders, numberOfAudioTags, publicFiles, includeFavicon, title, renderDefaults, publicFolderExists, gitSource, projectName, installedDependencies, packageManager, audioLatencyHint, logLevel, mode, }) =>
|
|
6
6
|
// Must setup remotion_editorName and remotion.remotion_projectName before bundle.js is loaded
|
|
7
7
|
`
|
|
8
8
|
<!DOCTYPE html>
|
|
@@ -35,6 +35,9 @@ const indexHtml = ({ publicPath, editorName, inputProps, envVariables, staticHas
|
|
|
35
35
|
: ''}
|
|
36
36
|
${renderQueue
|
|
37
37
|
? `<script>window.remotion_initialRenderQueue = ${JSON.stringify(renderQueue)};</script>`
|
|
38
|
+
: ''}
|
|
39
|
+
${completedClientRenders
|
|
40
|
+
? `<script>window.remotion_initialClientRenders = ${JSON.stringify(completedClientRenders)};</script>`
|
|
38
41
|
: ''}
|
|
39
42
|
${envVariables
|
|
40
43
|
? `<script>window.process = {env: ${JSON.stringify(envVariables)}};</script>`
|
package/dist/index.d.ts
CHANGED
|
@@ -18,7 +18,7 @@ export declare const BundlerInternals: {
|
|
|
18
18
|
askAIEnabled: boolean;
|
|
19
19
|
experimentalClientSideRenderingEnabled: boolean;
|
|
20
20
|
}) => Promise<[string, import("./webpack-config").WebpackConfiguration]>;
|
|
21
|
-
indexHtml: ({ publicPath, editorName, inputProps, envVariables, staticHash, remotionRoot, studioServerCommand, renderQueue, numberOfAudioTags, publicFiles, includeFavicon, title, renderDefaults, publicFolderExists, gitSource, projectName, installedDependencies, packageManager, audioLatencyHint, logLevel, mode, }: {
|
|
21
|
+
indexHtml: ({ publicPath, editorName, inputProps, envVariables, staticHash, remotionRoot, studioServerCommand, renderQueue, completedClientRenders, numberOfAudioTags, publicFiles, includeFavicon, title, renderDefaults, publicFolderExists, gitSource, projectName, installedDependencies, packageManager, audioLatencyHint, logLevel, mode, }: {
|
|
22
22
|
staticHash: string;
|
|
23
23
|
publicPath: string;
|
|
24
24
|
editorName: string | null;
|
|
@@ -27,6 +27,7 @@ export declare const BundlerInternals: {
|
|
|
27
27
|
remotionRoot: string;
|
|
28
28
|
studioServerCommand: string | null;
|
|
29
29
|
renderQueue: unknown | null;
|
|
30
|
+
completedClientRenders?: unknown | null;
|
|
30
31
|
numberOfAudioTags: number;
|
|
31
32
|
audioLatencyHint: AudioContextLatencyCategory;
|
|
32
33
|
publicFiles: import("remotion").StaticFile[];
|
package/dist/webpack-config.js
CHANGED
|
@@ -151,6 +151,7 @@ const webpackConfig = async ({ entry, userDefinedComponent, outDir, environment,
|
|
|
151
151
|
react: require.resolve('react'),
|
|
152
152
|
// Needed to not fail on this: https://github.com/remotion-dev/remotion/issues/5045
|
|
153
153
|
'remotion/no-react': node_path_1.default.resolve(require.resolve('remotion'), '..', '..', 'esm', 'no-react.mjs'),
|
|
154
|
+
'remotion/version': node_path_1.default.resolve(require.resolve('remotion'), '..', '..', 'esm', 'version.mjs'),
|
|
154
155
|
remotion: node_path_1.default.resolve(require.resolve('remotion'), '..', '..', 'esm', 'index.mjs'),
|
|
155
156
|
'@remotion/media-parser/worker': node_path_1.default.resolve(require.resolve('@remotion/media-parser'), '..', 'esm', 'worker.mjs'),
|
|
156
157
|
// test visual controls before removing this
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"url": "https://github.com/remotion-dev/remotion/tree/main/packages/bundler"
|
|
4
4
|
},
|
|
5
5
|
"name": "@remotion/bundler",
|
|
6
|
-
"version": "4.0.
|
|
6
|
+
"version": "4.0.423",
|
|
7
7
|
"description": "Bundle Remotion compositions using Webpack",
|
|
8
8
|
"main": "dist/index.js",
|
|
9
9
|
"sideEffects": false,
|
|
@@ -22,10 +22,10 @@
|
|
|
22
22
|
"css-loader": "5.2.7",
|
|
23
23
|
"esbuild": "0.25.0",
|
|
24
24
|
"react-refresh": "0.9.0",
|
|
25
|
-
"remotion": "4.0.
|
|
26
|
-
"@remotion/studio": "4.0.
|
|
27
|
-
"@remotion/studio-shared": "4.0.
|
|
28
|
-
"@remotion/media-parser": "4.0.
|
|
25
|
+
"remotion": "4.0.423",
|
|
26
|
+
"@remotion/studio": "4.0.423",
|
|
27
|
+
"@remotion/studio-shared": "4.0.423",
|
|
28
|
+
"@remotion/media-parser": "4.0.423",
|
|
29
29
|
"style-loader": "4.0.0",
|
|
30
30
|
"source-map": "0.7.3",
|
|
31
31
|
"webpack": "5.105.0"
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"react": "19.2.3",
|
|
39
39
|
"react-dom": "19.2.3",
|
|
40
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
40
|
+
"@remotion/eslint-config-internal": "4.0.423",
|
|
41
41
|
"eslint": "9.19.0"
|
|
42
42
|
},
|
|
43
43
|
"keywords": [
|