@remotion/bundler 3.2.10 → 3.2.11
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 -0
- package/dist/index.d.ts +2 -1
- package/dist/webpack-config.d.ts +2 -1
- package/dist/webpack-config.js +2 -1
- package/package.json +3 -3
package/dist/bundle.js
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import esbuild = require('esbuild');
|
|
|
2
2
|
import webpack = require('webpack');
|
|
3
3
|
export declare const BundlerInternals: {
|
|
4
4
|
esbuild: typeof esbuild;
|
|
5
|
-
webpackConfig: ({ entry, userDefinedComponent, outDir, environment, webpackOverride, onProgressUpdate, enableCaching, envVariables, maxTimelineTracks, entryPoints, remotionRoot, }: {
|
|
5
|
+
webpackConfig: ({ entry, userDefinedComponent, outDir, environment, webpackOverride, onProgressUpdate, enableCaching, envVariables, maxTimelineTracks, entryPoints, remotionRoot, keyboardShortcutsEnabled, }: {
|
|
6
6
|
entry: string;
|
|
7
7
|
userDefinedComponent: string;
|
|
8
8
|
outDir: string;
|
|
@@ -12,6 +12,7 @@ export declare const BundlerInternals: {
|
|
|
12
12
|
enableCaching?: boolean | undefined;
|
|
13
13
|
envVariables: Record<string, string>;
|
|
14
14
|
maxTimelineTracks: number;
|
|
15
|
+
keyboardShortcutsEnabled: boolean;
|
|
15
16
|
entryPoints: string[];
|
|
16
17
|
remotionRoot: string;
|
|
17
18
|
}) => [string, webpack.Configuration];
|
package/dist/webpack-config.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { WebpackConfiguration, WebpackOverrideFn } from 'remotion';
|
|
2
|
-
export declare const webpackConfig: ({ entry, userDefinedComponent, outDir, environment, webpackOverride, onProgressUpdate, enableCaching, envVariables, maxTimelineTracks, entryPoints, remotionRoot, }: {
|
|
2
|
+
export declare const webpackConfig: ({ entry, userDefinedComponent, outDir, environment, webpackOverride, onProgressUpdate, enableCaching, envVariables, maxTimelineTracks, entryPoints, remotionRoot, keyboardShortcutsEnabled, }: {
|
|
3
3
|
entry: string;
|
|
4
4
|
userDefinedComponent: string;
|
|
5
5
|
outDir: string;
|
|
@@ -9,6 +9,7 @@ export declare const webpackConfig: ({ entry, userDefinedComponent, outDir, envi
|
|
|
9
9
|
enableCaching?: boolean | undefined;
|
|
10
10
|
envVariables: Record<string, string>;
|
|
11
11
|
maxTimelineTracks: number;
|
|
12
|
+
keyboardShortcutsEnabled: boolean;
|
|
12
13
|
entryPoints: string[];
|
|
13
14
|
remotionRoot: string;
|
|
14
15
|
}) => [string, WebpackConfiguration];
|
package/dist/webpack-config.js
CHANGED
|
@@ -50,7 +50,7 @@ const esbuildLoaderOptions = {
|
|
|
50
50
|
function truthy(value) {
|
|
51
51
|
return Boolean(value);
|
|
52
52
|
}
|
|
53
|
-
const webpackConfig = ({ entry, userDefinedComponent, outDir, environment, webpackOverride = (f) => f, onProgressUpdate, enableCaching = true, envVariables, maxTimelineTracks, entryPoints, remotionRoot, }) => {
|
|
53
|
+
const webpackConfig = ({ entry, userDefinedComponent, outDir, environment, webpackOverride = (f) => f, onProgressUpdate, enableCaching = true, envVariables, maxTimelineTracks, entryPoints, remotionRoot, keyboardShortcutsEnabled, }) => {
|
|
54
54
|
const conf = webpackOverride({
|
|
55
55
|
optimization: {
|
|
56
56
|
minimize: false,
|
|
@@ -89,6 +89,7 @@ const webpackConfig = ({ entry, userDefinedComponent, outDir, environment, webpa
|
|
|
89
89
|
new webpack_1.default.HotModuleReplacementPlugin(),
|
|
90
90
|
new webpack_1.default.DefinePlugin({
|
|
91
91
|
'process.env.MAX_TIMELINE_TRACKS': maxTimelineTracks,
|
|
92
|
+
'process.env.KEYBOARD_SHORTCUTS_ENABLED': keyboardShortcutsEnabled,
|
|
92
93
|
[`process.env.${remotion_1.Internals.ENV_VARIABLES_ENV_NAME}`]: JSON.stringify(envVariables),
|
|
93
94
|
}),
|
|
94
95
|
]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remotion/bundler",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.11",
|
|
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.14.19",
|
|
28
28
|
"react-refresh": "0.9.0",
|
|
29
|
-
"remotion": "3.2.
|
|
29
|
+
"remotion": "3.2.11",
|
|
30
30
|
"style-loader": "2.0.0",
|
|
31
31
|
"webpack": "5.72.0"
|
|
32
32
|
},
|
|
@@ -63,5 +63,5 @@
|
|
|
63
63
|
"publishConfig": {
|
|
64
64
|
"access": "public"
|
|
65
65
|
},
|
|
66
|
-
"gitHead": "
|
|
66
|
+
"gitHead": "43d44e718e41200aea544719e9963482f9a65120"
|
|
67
67
|
}
|