@remotion/cli 3.3.32 → 3.3.33
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/config/log.d.ts +1 -1
- package/dist/editor/components/NewComposition/InputDragger.d.ts +1 -0
- package/dist/editor/components/NewComposition/InputDragger.js +22 -4
- package/dist/editor/components/NewComposition/NewCompDuration.js +5 -3
- package/dist/editor/components/NewComposition/NewComposition.js +5 -5
- package/dist/editor/state/z-index.js +24 -11
- package/dist/get-cli-options.d.ts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/preview-server/start-server.js +2 -1
- package/package.json +7 -7
package/dist/config/log.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { LogLevel } from '@remotion/renderer';
|
|
2
|
-
export declare const getLogLevel: () => "verbose" | "
|
|
2
|
+
export declare const getLogLevel: () => "verbose" | "info" | "warn" | "error";
|
|
3
3
|
export declare const setLogLevel: (newLogLevel: LogLevel) => void;
|
|
@@ -2,6 +2,7 @@ import type { InputHTMLAttributes } from 'react';
|
|
|
2
2
|
import React from 'react';
|
|
3
3
|
declare type Props = InputHTMLAttributes<HTMLInputElement> & {
|
|
4
4
|
onValueChange: (newVal: number) => void;
|
|
5
|
+
onTextChange: (newVal: string) => void;
|
|
5
6
|
};
|
|
6
7
|
export declare const InputDragger: React.FC<Props>;
|
|
7
8
|
export {};
|
|
@@ -8,7 +8,7 @@ const noop_1 = require("../../helpers/noop");
|
|
|
8
8
|
const input_dragger_click_lock_1 = require("../../state/input-dragger-click-lock");
|
|
9
9
|
const z_index_1 = require("../../state/z-index");
|
|
10
10
|
const RemInput_1 = require("./RemInput");
|
|
11
|
-
const InputDragger = ({ onValueChange, min: _min, step: _step, value, ...props }) => {
|
|
11
|
+
const InputDragger = ({ onValueChange, min: _min, step: _step, value, onTextChange, ...props }) => {
|
|
12
12
|
const [inputFallback, setInputFallback] = (0, react_1.useState)(false);
|
|
13
13
|
const fallbackRef = (0, react_1.useRef)(null);
|
|
14
14
|
const style = (0, react_1.useMemo)(() => {
|
|
@@ -35,12 +35,30 @@ const InputDragger = ({ onValueChange, min: _min, step: _step, value, ...props }
|
|
|
35
35
|
}
|
|
36
36
|
setInputFallback(true);
|
|
37
37
|
}, []);
|
|
38
|
-
const
|
|
38
|
+
const onEscape = (0, react_1.useCallback)(() => {
|
|
39
39
|
setInputFallback(false);
|
|
40
40
|
}, []);
|
|
41
|
+
const onBlur = (0, react_1.useCallback)(() => {
|
|
42
|
+
if (!fallbackRef.current) {
|
|
43
|
+
return;
|
|
44
|
+
}
|
|
45
|
+
const newValue = fallbackRef.current.value;
|
|
46
|
+
if (newValue.trim() === '') {
|
|
47
|
+
onEscape();
|
|
48
|
+
return;
|
|
49
|
+
}
|
|
50
|
+
if (fallbackRef.current.checkValidity()) {
|
|
51
|
+
onTextChange === null || onTextChange === void 0 ? void 0 : onTextChange(newValue);
|
|
52
|
+
setInputFallback(false);
|
|
53
|
+
}
|
|
54
|
+
else {
|
|
55
|
+
fallbackRef.current.reportValidity();
|
|
56
|
+
}
|
|
57
|
+
}, [onEscape, onTextChange]);
|
|
41
58
|
const onKeyPress = (0, react_1.useCallback)((e) => {
|
|
59
|
+
var _a;
|
|
42
60
|
if (e.key === 'Enter') {
|
|
43
|
-
|
|
61
|
+
(_a = fallbackRef.current) === null || _a === void 0 ? void 0 : _a.blur();
|
|
44
62
|
}
|
|
45
63
|
}, []);
|
|
46
64
|
const onPointerDown = (0, react_1.useCallback)((e) => {
|
|
@@ -75,7 +93,7 @@ const InputDragger = ({ onValueChange, min: _min, step: _step, value, ...props }
|
|
|
75
93
|
}
|
|
76
94
|
}, [inputFallback]);
|
|
77
95
|
if (inputFallback) {
|
|
78
|
-
return ((0, jsx_runtime_1.jsx)(z_index_1.HigherZIndex, { onEscape:
|
|
96
|
+
return ((0, jsx_runtime_1.jsx)(z_index_1.HigherZIndex, { onEscape: onEscape, onOutsideClick: noop_1.noop, children: (0, jsx_runtime_1.jsx)(RemInput_1.RemotionInput, { ref: fallbackRef, autoFocus: true, onKeyPress: onKeyPress, onBlur: onBlur, min: _min, step: _step, defaultValue: value, ...props }) }));
|
|
79
97
|
}
|
|
80
98
|
return ((0, jsx_runtime_1.jsx)("button", { type: "button", style: style, onClick: onClick, onPointerDown: onPointerDown, children: (0, jsx_runtime_1.jsx)("span", { style: span, children: value }) }));
|
|
81
99
|
};
|
|
@@ -9,13 +9,15 @@ const InputDragger_1 = require("./InputDragger");
|
|
|
9
9
|
const new_comp_layout_1 = require("./new-comp-layout");
|
|
10
10
|
const ValidationMessage_1 = require("./ValidationMessage");
|
|
11
11
|
const NewCompDuration = ({ durationInFrames, setDurationInFrames, fps }) => {
|
|
12
|
-
const onDurationInFramesChanged = (0, react_1.useCallback)((
|
|
13
|
-
setDurationInFrames(String(Number(
|
|
12
|
+
const onDurationInFramesChanged = (0, react_1.useCallback)((newValue) => {
|
|
13
|
+
setDurationInFrames(String(Number(newValue)));
|
|
14
14
|
}, [setDurationInFrames]);
|
|
15
15
|
const onDurationChangedDirectly = (0, react_1.useCallback)((newVal) => {
|
|
16
16
|
setDurationInFrames(String(newVal));
|
|
17
17
|
}, [setDurationInFrames]);
|
|
18
18
|
const compDurationErrMessage = (0, validate_new_comp_data_1.validateCompositionDuration)(durationInFrames);
|
|
19
|
-
return ((0, jsx_runtime_1.jsx)("div", { children: (0, jsx_runtime_1.jsx)("label", { children: (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsx)("div", { style: new_comp_layout_1.leftLabel, children: " Duration in frames" }), (0, jsx_runtime_1.jsxs)("div", { style: new_comp_layout_1.inputArea, children: [(0, jsx_runtime_1.jsx)(InputDragger_1.InputDragger, { type: "number", value: durationInFrames,
|
|
19
|
+
return ((0, jsx_runtime_1.jsx)("div", { children: (0, jsx_runtime_1.jsx)("label", { children: (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsx)("div", { style: new_comp_layout_1.leftLabel, children: " Duration in frames" }), (0, jsx_runtime_1.jsxs)("div", { style: new_comp_layout_1.inputArea, children: [(0, jsx_runtime_1.jsx)(InputDragger_1.InputDragger, { type: "number", value: durationInFrames, onTextChange: onDurationInFramesChanged, placeholder: "Duration (frames)", name: "durationInFrames", min: 1, step: 1, required: true,
|
|
20
|
+
// Hitting Promise.all() limit in Chrome
|
|
21
|
+
max: 300000, onValueChange: onDurationChangedDirectly }), compDurationErrMessage ? ((0, jsx_runtime_1.jsx)(ValidationMessage_1.ValidationMessage, { message: compDurationErrMessage })) : null] }), (0, jsx_runtime_1.jsxs)("span", { style: new_comp_layout_1.rightLabel, children: [(Number(durationInFrames) / Number(fps)).toFixed(2), "sec"] })] }) }) }));
|
|
20
22
|
};
|
|
21
23
|
exports.NewCompDuration = NewCompDuration;
|
|
@@ -84,10 +84,10 @@ const NewComposition = (props) => {
|
|
|
84
84
|
const onTypeChanged = (0, react_1.useCallback)((newType) => {
|
|
85
85
|
setType(newType);
|
|
86
86
|
}, []);
|
|
87
|
-
const onWidthChanged = (0, react_1.useCallback)((
|
|
87
|
+
const onWidthChanged = (0, react_1.useCallback)((newValue) => {
|
|
88
88
|
setSize((s) => {
|
|
89
89
|
const { height } = s;
|
|
90
|
-
const newWidth = Number(
|
|
90
|
+
const newWidth = Number(newValue);
|
|
91
91
|
return {
|
|
92
92
|
height: lockedAspectRatio === null
|
|
93
93
|
? height
|
|
@@ -118,10 +118,10 @@ const NewComposition = (props) => {
|
|
|
118
118
|
};
|
|
119
119
|
});
|
|
120
120
|
}, [lockedAspectRatio]);
|
|
121
|
-
const onHeightChanged = (0, react_1.useCallback)((
|
|
121
|
+
const onHeightChanged = (0, react_1.useCallback)((newValue) => {
|
|
122
122
|
setSize((s) => {
|
|
123
123
|
const { width } = s;
|
|
124
|
-
const newHeight = Number(
|
|
124
|
+
const newHeight = Number(newValue);
|
|
125
125
|
return {
|
|
126
126
|
width: lockedAspectRatio === null
|
|
127
127
|
? width
|
|
@@ -180,7 +180,7 @@ const NewComposition = (props) => {
|
|
|
180
180
|
},
|
|
181
181
|
];
|
|
182
182
|
}, [onTypeChanged]);
|
|
183
|
-
return ((0, jsx_runtime_1.jsxs)(ModalContainer_1.ModalContainer, { onOutsideClick: onQuit, onEscape: onQuit, children: [(0, jsx_runtime_1.jsx)(ModalHeader_1.NewCompHeader, { title: "New composition" }), (0, jsx_runtime_1.jsxs)("div", { style: panelContent, children: [(0, jsx_runtime_1.jsxs)("div", { style: left, children: [(0, jsx_runtime_1.jsx)(layout_1.Spacing, { y: 3 }), (0, jsx_runtime_1.jsxs)("form", { children: [(0, jsx_runtime_1.jsxs)("label", { children: [(0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsx)("div", { style: new_comp_layout_1.leftLabel, children: "Type" }), (0, jsx_runtime_1.jsx)("div", { style: new_comp_layout_1.inputArea, children: (0, jsx_runtime_1.jsx)(ComboBox_1.Combobox, { title: "Type of composition", style: comboBoxStyle, values: typeValues, selectedId: type }) })] }), (0, jsx_runtime_1.jsx)(layout_1.Spacing, { y: 1 }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsx)("div", { style: new_comp_layout_1.leftLabel, children: "Name" }), (0, jsx_runtime_1.jsxs)("div", { style: new_comp_layout_1.inputArea, children: [(0, jsx_runtime_1.jsx)(RemInput_1.RemotionInput, { value: name, onChange: onNameChange, type: "text", placeholder: "Composition name" }), compNameErrMessage ? ((0, jsx_runtime_1.jsx)(ValidationMessage_1.ValidationMessage, { message: compNameErrMessage })) : null] })] })] }), (0, jsx_runtime_1.jsx)(layout_1.Spacing, { y: 1 }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsxs)("div", { children: [(0, jsx_runtime_1.jsx)("div", { children: (0, jsx_runtime_1.jsx)("label", { children: (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsx)("div", { style: new_comp_layout_1.leftLabel, children: "Width" }), (0, jsx_runtime_1.jsxs)("div", { style: new_comp_layout_1.inputArea, children: [(0, jsx_runtime_1.jsx)(InputDragger_1.InputDragger, { type: "number", value: size.width, placeholder: "Width (px)",
|
|
183
|
+
return ((0, jsx_runtime_1.jsxs)(ModalContainer_1.ModalContainer, { onOutsideClick: onQuit, onEscape: onQuit, children: [(0, jsx_runtime_1.jsx)(ModalHeader_1.NewCompHeader, { title: "New composition" }), (0, jsx_runtime_1.jsxs)("div", { style: panelContent, children: [(0, jsx_runtime_1.jsxs)("div", { style: left, children: [(0, jsx_runtime_1.jsx)(layout_1.Spacing, { y: 3 }), (0, jsx_runtime_1.jsxs)("form", { children: [(0, jsx_runtime_1.jsxs)("label", { children: [(0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsx)("div", { style: new_comp_layout_1.leftLabel, children: "Type" }), (0, jsx_runtime_1.jsx)("div", { style: new_comp_layout_1.inputArea, children: (0, jsx_runtime_1.jsx)(ComboBox_1.Combobox, { title: "Type of composition", style: comboBoxStyle, values: typeValues, selectedId: type }) })] }), (0, jsx_runtime_1.jsx)(layout_1.Spacing, { y: 1 }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsx)("div", { style: new_comp_layout_1.leftLabel, children: "Name" }), (0, jsx_runtime_1.jsxs)("div", { style: new_comp_layout_1.inputArea, children: [(0, jsx_runtime_1.jsx)(RemInput_1.RemotionInput, { value: name, onChange: onNameChange, type: "text", placeholder: "Composition name" }), compNameErrMessage ? ((0, jsx_runtime_1.jsx)(ValidationMessage_1.ValidationMessage, { message: compNameErrMessage })) : null] })] })] }), (0, jsx_runtime_1.jsx)(layout_1.Spacing, { y: 1 }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsxs)("div", { children: [(0, jsx_runtime_1.jsx)("div", { children: (0, jsx_runtime_1.jsx)("label", { children: (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsx)("div", { style: new_comp_layout_1.leftLabel, children: "Width" }), (0, jsx_runtime_1.jsxs)("div", { style: new_comp_layout_1.inputArea, children: [(0, jsx_runtime_1.jsx)(InputDragger_1.InputDragger, { type: "number", value: size.width, placeholder: "Width (px)", onTextChange: onWidthChanged, name: "width", step: 2, min: 2, required: true, max: 100000000, onValueChange: onWidthDirectlyChanged }), compWidthErrMessage ? ((0, jsx_runtime_1.jsx)(ValidationMessage_1.ValidationMessage, { message: compWidthErrMessage })) : null] })] }) }) }), (0, jsx_runtime_1.jsx)("div", {}), (0, jsx_runtime_1.jsx)(layout_1.Spacing, { y: 1 }), (0, jsx_runtime_1.jsx)("div", {}), (0, jsx_runtime_1.jsx)("label", { children: (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsx)("div", { style: new_comp_layout_1.leftLabel, children: "Height" }), (0, jsx_runtime_1.jsxs)("div", { style: new_comp_layout_1.inputArea, children: [(0, jsx_runtime_1.jsx)(InputDragger_1.InputDragger, { type: "number", value: size.height, onTextChange: onHeightChanged, placeholder: "Height (px)", name: "height", step: 2, required: true, min: 2, max: 100000000, onValueChange: onHeightDirectlyChanged }), compHeightErrMessage ? ((0, jsx_runtime_1.jsx)(ValidationMessage_1.ValidationMessage, { message: compHeightErrMessage })) : null] })] }) })] }), (0, jsx_runtime_1.jsx)("div", { children: (0, jsx_runtime_1.jsx)(NewCompAspectRatio_1.NewCompAspectRatio, { width: Number(size.width), height: Number(size.height), aspectRatioLocked: lockedAspectRatio, setAspectRatioLocked: setAspectRatioLocked }) })] }), (0, jsx_runtime_1.jsx)("div", {}), (0, jsx_runtime_1.jsx)(layout_1.Spacing, { y: 1 }), type === 'composition' ? ((0, jsx_runtime_1.jsx)(NewCompDuration_1.NewCompDuration, { durationInFrames: durationInFrames, fps: selectedFrameRate, setDurationInFrames: setDurationInFrames })) : null, (0, jsx_runtime_1.jsx)("div", {}), (0, jsx_runtime_1.jsx)("br", {}), (0, jsx_runtime_1.jsx)("div", {}), type === 'composition' ? ((0, jsx_runtime_1.jsxs)("div", { children: [(0, jsx_runtime_1.jsx)("div", {}), (0, jsx_runtime_1.jsx)(layout_1.Spacing, { y: 1 }), (0, jsx_runtime_1.jsxs)("label", { children: [(0, jsx_runtime_1.jsx)("div", { style: new_comp_layout_1.leftLabel, children: "Framerate" }), (0, jsx_runtime_1.jsx)(ComboBox_1.Combobox, { title: "Framerate", style: comboBoxStyle, values: items, selectedId: selectedFrameRate })] })] })) : null] })] }), (0, jsx_runtime_1.jsxs)("div", { style: panelRight, children: [(0, jsx_runtime_1.jsx)("pre", { style: pre, children: (0, NewCompCode_1.getNewCompositionCode)({
|
|
184
184
|
type,
|
|
185
185
|
durationInFrames: Number(durationInFrames),
|
|
186
186
|
fps: Number(selectedFrameRate),
|
|
@@ -35,20 +35,33 @@ const HigherZIndex = ({ children, onEscape, onOutsideClick }) => {
|
|
|
35
35
|
return () => highestContext.unregisterZIndex(currentIndex);
|
|
36
36
|
}, [currentIndex, highestContext]);
|
|
37
37
|
(0, react_1.useEffect)(() => {
|
|
38
|
-
|
|
38
|
+
let onUp = null;
|
|
39
|
+
const listener = (downEvent) => {
|
|
39
40
|
var _a;
|
|
40
|
-
const outsideClick = !((_a = containerRef.current) === null || _a === void 0 ? void 0 : _a.contains(
|
|
41
|
-
if (outsideClick
|
|
42
|
-
|
|
43
|
-
!(0, input_dragger_click_lock_1.getClickLock)() &&
|
|
44
|
-
// Don't trigger if that click removed that node
|
|
45
|
-
document.contains(e.target)) {
|
|
46
|
-
e.stopPropagation();
|
|
47
|
-
onOutsideClick();
|
|
41
|
+
const outsideClick = !((_a = containerRef.current) === null || _a === void 0 ? void 0 : _a.contains(downEvent.target));
|
|
42
|
+
if (!outsideClick) {
|
|
43
|
+
return;
|
|
48
44
|
}
|
|
45
|
+
onUp = (upEvent) => {
|
|
46
|
+
if (outsideClick &&
|
|
47
|
+
highestContext.highestIndex === currentIndex &&
|
|
48
|
+
!(0, input_dragger_click_lock_1.getClickLock)() &&
|
|
49
|
+
// Don't trigger if that click removed that node
|
|
50
|
+
document.contains(upEvent.target)) {
|
|
51
|
+
upEvent.stopPropagation();
|
|
52
|
+
onOutsideClick();
|
|
53
|
+
}
|
|
54
|
+
};
|
|
55
|
+
window.addEventListener('pointerup', onUp, { once: true });
|
|
56
|
+
};
|
|
57
|
+
window.addEventListener('pointerdown', listener);
|
|
58
|
+
return () => {
|
|
59
|
+
if (onUp) {
|
|
60
|
+
// @ts-expect-error
|
|
61
|
+
window.removeEventListener('pointerup', onUp, { once: true });
|
|
62
|
+
}
|
|
63
|
+
return window.removeEventListener('pointerdown', listener);
|
|
49
64
|
};
|
|
50
|
-
window.addEventListener('click', listener);
|
|
51
|
-
return () => window.removeEventListener('click', listener);
|
|
52
65
|
}, [currentIndex, highestContext.highestIndex, onOutsideClick]);
|
|
53
66
|
const value = (0, react_1.useMemo)(() => {
|
|
54
67
|
return {
|
|
@@ -30,7 +30,7 @@ export declare const getCliOptions: (options: {
|
|
|
30
30
|
browserExecutable: BrowserExecutable;
|
|
31
31
|
ffmpegExecutable: import("@remotion/renderer").FfmpegExecutable;
|
|
32
32
|
ffprobeExecutable: import("@remotion/renderer").FfmpegExecutable;
|
|
33
|
-
logLevel: "verbose" | "
|
|
33
|
+
logLevel: "verbose" | "info" | "warn" | "error";
|
|
34
34
|
scale: number;
|
|
35
35
|
chromiumOptions: ChromiumOptions;
|
|
36
36
|
overwrite: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -88,7 +88,7 @@ export declare const CliInternals: {
|
|
|
88
88
|
browserExecutable: import("@remotion/renderer").BrowserExecutable;
|
|
89
89
|
ffmpegExecutable: import("@remotion/renderer").FfmpegExecutable;
|
|
90
90
|
ffprobeExecutable: import("@remotion/renderer").FfmpegExecutable;
|
|
91
|
-
logLevel: "verbose" | "
|
|
91
|
+
logLevel: "verbose" | "info" | "warn" | "error";
|
|
92
92
|
scale: number;
|
|
93
93
|
chromiumOptions: import("@remotion/renderer").ChromiumOptions;
|
|
94
94
|
overwrite: boolean;
|
|
@@ -79,8 +79,9 @@ const startServer = async (options) => {
|
|
|
79
79
|
});
|
|
80
80
|
});
|
|
81
81
|
const desiredPort = (_d = options === null || options === void 0 ? void 0 : options.port) !== null && _d !== void 0 ? _d : undefined;
|
|
82
|
-
const port = await renderer_1.RenderInternals.getDesiredPort(desiredPort, 3000, 3100);
|
|
82
|
+
const { port, didUsePort } = await renderer_1.RenderInternals.getDesiredPort(desiredPort, 3000, 3100);
|
|
83
83
|
server.listen(port);
|
|
84
|
+
server.on('listening', () => didUsePort());
|
|
84
85
|
return { port, liveEventsServer };
|
|
85
86
|
};
|
|
86
87
|
exports.startServer = startServer;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remotion/cli",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.33",
|
|
4
4
|
"description": "CLI for Remotion",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -22,16 +22,16 @@
|
|
|
22
22
|
"author": "Jonny Burger <jonny@remotion.dev>",
|
|
23
23
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@remotion/bundler": "3.3.
|
|
26
|
-
"@remotion/media-utils": "3.3.
|
|
27
|
-
"@remotion/player": "3.3.
|
|
28
|
-
"@remotion/renderer": "3.3.
|
|
25
|
+
"@remotion/bundler": "3.3.33",
|
|
26
|
+
"@remotion/media-utils": "3.3.33",
|
|
27
|
+
"@remotion/player": "3.3.33",
|
|
28
|
+
"@remotion/renderer": "3.3.33",
|
|
29
29
|
"better-opn": "2.1.1",
|
|
30
30
|
"dotenv": "9.0.2",
|
|
31
31
|
"memfs": "3.4.3",
|
|
32
32
|
"minimist": "1.2.6",
|
|
33
33
|
"prompts": "2.4.1",
|
|
34
|
-
"remotion": "3.3.
|
|
34
|
+
"remotion": "3.3.33",
|
|
35
35
|
"semver": "7.3.5",
|
|
36
36
|
"source-map": "0.6.1"
|
|
37
37
|
},
|
|
@@ -71,5 +71,5 @@
|
|
|
71
71
|
"publishConfig": {
|
|
72
72
|
"access": "public"
|
|
73
73
|
},
|
|
74
|
-
"gitHead": "
|
|
74
|
+
"gitHead": "0356b9108673ac98c41990f192b101f7a6574ed0"
|
|
75
75
|
}
|