@remotion/cli 4.0.247 → 4.0.249
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.
|
@@ -21,8 +21,13 @@ const makeDownloadProgress = ({ bytesDownloaded, totalBytes, doneIn, }) => {
|
|
|
21
21
|
.join(' ');
|
|
22
22
|
};
|
|
23
23
|
const defaultBrowserDownloadProgress = ({ indent, logLevel, quiet, }) => {
|
|
24
|
-
return () => {
|
|
25
|
-
|
|
24
|
+
return ({ chromeMode }) => {
|
|
25
|
+
if (chromeMode === 'chrome-for-testing') {
|
|
26
|
+
log_1.Log.info({ indent, logLevel }, 'Downloading Chrome for Testing https://www.remotion.dev/chrome-for-testing');
|
|
27
|
+
}
|
|
28
|
+
else {
|
|
29
|
+
log_1.Log.info({ indent, logLevel }, chalk_1.chalk.gray('Downloading Chrome Headless Shell https://www.remotion.dev/chrome-headless-shell'));
|
|
30
|
+
}
|
|
26
31
|
const updatesDontOverwrite = (0, should_use_non_overlaying_logger_1.shouldUseNonOverlayingLogger)({ logLevel });
|
|
27
32
|
if (updatesDontOverwrite) {
|
|
28
33
|
let lastProgress = 0;
|
package/dist/config/index.d.ts
CHANGED
|
@@ -55,7 +55,7 @@ declare global {
|
|
|
55
55
|
*/
|
|
56
56
|
readonly setKeyboardShortcutsEnabled: (enableShortcuts: boolean) => void;
|
|
57
57
|
/**
|
|
58
|
-
* Set number of shared audio tags. https://www.remotion.dev/docs/player/autoplay#
|
|
58
|
+
* Set number of shared audio tags. https://www.remotion.dev/docs/player/autoplay#using-the-numberofsharedaudiotags-prop
|
|
59
59
|
* @param numberOfAudioTags
|
|
60
60
|
* @default 0
|
|
61
61
|
*/
|
|
@@ -3,6 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.listOfRemotionPackages = void 0;
|
|
4
4
|
// Keep in sync with create-video
|
|
5
5
|
exports.listOfRemotionPackages = [
|
|
6
|
+
'@remotion/svg-3d-engine',
|
|
6
7
|
'@remotion/layout-utils',
|
|
7
8
|
'@remotion/bundler',
|
|
8
9
|
'@remotion/cli',
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"url": "https://github.com/remotion-dev/remotion/tree/main/packages/cli"
|
|
4
4
|
},
|
|
5
5
|
"name": "@remotion/cli",
|
|
6
|
-
"version": "4.0.
|
|
6
|
+
"version": "4.0.249",
|
|
7
7
|
"description": "Control Remotion features using the `npx remotion` command",
|
|
8
8
|
"main": "dist/index.js",
|
|
9
9
|
"sideEffects": false,
|
|
@@ -33,14 +33,14 @@
|
|
|
33
33
|
"dotenv": "9.0.2",
|
|
34
34
|
"minimist": "1.2.6",
|
|
35
35
|
"prompts": "2.4.2",
|
|
36
|
-
"@remotion/
|
|
37
|
-
"
|
|
38
|
-
"@remotion/
|
|
39
|
-
"@remotion/
|
|
40
|
-
"remotion": "4.0.
|
|
41
|
-
"@remotion/
|
|
42
|
-
"@remotion/
|
|
43
|
-
"@remotion/
|
|
36
|
+
"@remotion/media-utils": "4.0.249",
|
|
37
|
+
"remotion": "4.0.249",
|
|
38
|
+
"@remotion/renderer": "4.0.249",
|
|
39
|
+
"@remotion/studio": "4.0.249",
|
|
40
|
+
"@remotion/studio-server": "4.0.249",
|
|
41
|
+
"@remotion/bundler": "4.0.249",
|
|
42
|
+
"@remotion/player": "4.0.249",
|
|
43
|
+
"@remotion/studio-shared": "4.0.249"
|
|
44
44
|
},
|
|
45
45
|
"peerDependencies": {
|
|
46
46
|
"react": ">=16.8.0",
|
|
@@ -54,11 +54,11 @@
|
|
|
54
54
|
"react-dom": "19.0.0",
|
|
55
55
|
"zod": "3.22.3",
|
|
56
56
|
"eslint": "9.14.0",
|
|
57
|
-
"@remotion/
|
|
58
|
-
"@remotion/
|
|
59
|
-
"@remotion/
|
|
60
|
-
"@remotion/
|
|
61
|
-
"@remotion/
|
|
57
|
+
"@remotion/enable-scss": "4.0.249",
|
|
58
|
+
"@remotion/zod-types": "4.0.249",
|
|
59
|
+
"@remotion/eslint-config-internal": "4.0.249",
|
|
60
|
+
"@remotion/skia": "4.0.249",
|
|
61
|
+
"@remotion/tailwind": "4.0.249"
|
|
62
62
|
},
|
|
63
63
|
"keywords": [
|
|
64
64
|
"remotion",
|