create-video 4.0.454 → 4.0.456

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.
@@ -90,7 +90,8 @@ var listOfRemotionPackages = [
90
90
  "@remotion/light-leaks",
91
91
  "@remotion/starburst",
92
92
  "@remotion/vercel",
93
- "@remotion/sfx"
93
+ "@remotion/sfx",
94
+ "@remotion/effects"
94
95
  ];
95
96
 
96
97
  // src/templates.ts
@@ -94,4 +94,5 @@ exports.listOfRemotionPackages = [
94
94
  '@remotion/starburst',
95
95
  '@remotion/vercel',
96
96
  '@remotion/sfx',
97
+ '@remotion/effects',
97
98
  ];
@@ -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.454",
6
+ "version": "4.0.456",
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.454",
33
+ "@remotion/eslint-config-internal": "4.0.456",
34
34
  "eslint": "9.19.0",
35
35
  "@typescript/native-preview": "7.0.0-dev.20260217.1"
36
36
  },