create-video 4.0.455 → 4.0.457
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.
|
@@ -101,6 +101,11 @@ const resolveProjectRoot = async (options) => {
|
|
|
101
101
|
(0, mkdirp_1.mkdirp)(projectRoot);
|
|
102
102
|
}
|
|
103
103
|
if (assertFolderEmptyAsync(projectRoot).exists) {
|
|
104
|
+
// When the folder name came from the CLI, prompting again would reuse the same
|
|
105
|
+
// argument and recurse forever (see https://github.com/remotion-dev/remotion/issues/7219).
|
|
106
|
+
if (options === null || options === void 0 ? void 0 : options.directoryArgument) {
|
|
107
|
+
process.exit(1);
|
|
108
|
+
}
|
|
104
109
|
return (0, exports.resolveProjectRoot)(options);
|
|
105
110
|
}
|
|
106
111
|
return { projectRoot, folderName };
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"url": "https://github.com/remotion-dev/remotion/tree/main/packages/create-video"
|
|
4
4
|
},
|
|
5
5
|
"name": "create-video",
|
|
6
|
-
"version": "4.0.
|
|
6
|
+
"version": "4.0.457",
|
|
7
7
|
"description": "Create a new Remotion project",
|
|
8
8
|
"main": "dist/index.js",
|
|
9
9
|
"bin": {
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"@types/prompts": "^2.0.12",
|
|
31
31
|
"@types/tar": "6.1.1",
|
|
32
32
|
"react": "19.2.3",
|
|
33
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
33
|
+
"@remotion/eslint-config-internal": "4.0.457",
|
|
34
34
|
"eslint": "9.19.0",
|
|
35
35
|
"@typescript/native-preview": "7.0.0-dev.20260217.1"
|
|
36
36
|
},
|