@remotion/cli 4.0.317 → 4.0.319

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.
@@ -8,10 +8,12 @@ const make_progress_bar_1 = require("./make-progress-bar");
8
8
  const progress_bar_1 = require("./progress-bar");
9
9
  const should_use_non_overlaying_logger_1 = require("./should-use-non-overlaying-logger");
10
10
  const truthy_1 = require("./truthy");
11
- const makeDownloadProgress = ({ bytesDownloaded, totalBytes, doneIn, }) => {
11
+ const makeDownloadProgress = ({ bytesDownloaded, totalBytes, doneIn, chromeMode, }) => {
12
12
  const progress = bytesDownloaded / totalBytes;
13
13
  return [
14
- `${doneIn ? 'Got' : 'Getting'} Headless Shell`.padEnd(progress_bar_1.LABEL_WIDTH, ' '),
14
+ `${doneIn ? 'Got' : 'Getting'} ${chromeMode === 'chrome-for-testing'
15
+ ? 'Chrome for Testing'
16
+ : 'Headless Shell'}`.padEnd(progress_bar_1.LABEL_WIDTH, ' '),
15
17
  (0, make_progress_bar_1.makeProgressBar)(progress, false),
16
18
  doneIn === null
17
19
  ? (progress * 100).toFixed(0) + '%'
@@ -65,6 +67,7 @@ const defaultBrowserDownloadProgress = ({ indent, logLevel, quiet, }) => {
65
67
  doneIn,
66
68
  bytesDownloaded: progress.downloadedBytes,
67
69
  totalBytes: progress.totalSizeInBytes,
70
+ chromeMode,
68
71
  }), progress.percent === 1);
69
72
  },
70
73
  };
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.317",
6
+ "version": "4.0.319",
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/bundler": "4.0.317",
37
- "@remotion/media-utils": "4.0.317",
38
- "@remotion/renderer": "4.0.317",
39
- "@remotion/studio-server": "4.0.317",
40
- "@remotion/player": "4.0.317",
41
- "@remotion/studio": "4.0.317",
42
- "remotion": "4.0.317",
43
- "@remotion/studio-shared": "4.0.317"
36
+ "@remotion/bundler": "4.0.319",
37
+ "@remotion/renderer": "4.0.319",
38
+ "@remotion/player": "4.0.319",
39
+ "@remotion/studio-shared": "4.0.319",
40
+ "@remotion/studio": "4.0.319",
41
+ "remotion": "4.0.319",
42
+ "@remotion/media-utils": "4.0.319",
43
+ "@remotion/studio-server": "4.0.319"
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.19.0",
57
- "@remotion/tailwind-v4": "4.0.317",
58
- "@remotion/enable-scss": "4.0.317",
59
- "@remotion/zod-types": "4.0.317",
60
- "@remotion/eslint-config-internal": "4.0.317",
61
- "@remotion/skia": "4.0.317"
57
+ "@remotion/tailwind-v4": "4.0.319",
58
+ "@remotion/zod-types": "4.0.319",
59
+ "@remotion/enable-scss": "4.0.319",
60
+ "@remotion/skia": "4.0.319",
61
+ "@remotion/eslint-config-internal": "4.0.319"
62
62
  },
63
63
  "keywords": [
64
64
  "remotion",
@@ -72,7 +72,7 @@
72
72
  },
73
73
  "homepage": "https://www.remotion.dev/docs/cli",
74
74
  "scripts": {
75
- "formatting": "prettier src --check",
75
+ "formatting": "prettier --experimental-cli src --check",
76
76
  "lint": "eslint src",
77
77
  "test": "bun test src",
78
78
  "make": "tsc -d"