create-video 4.0.258 → 4.0.259

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/log.d.ts CHANGED
@@ -11,9 +11,9 @@ export declare const Log: {
11
11
  supportsColor: chalk.ColorSupport | false;
12
12
  };
13
13
  };
14
- verbose: (...args: Parameters<typeof console.log>) => void;
15
- info: (...args: Parameters<typeof console.log>) => void;
16
- warn: (...args: Parameters<typeof console.log>) => void;
17
- error: (...args: Parameters<typeof console.log>) => void;
14
+ verbose: (message?: any, ...optionalParams: any[]) => void;
15
+ info: (message?: any, ...optionalParams: any[]) => void;
16
+ warn: (message?: any, ...optionalParams: any[]) => void;
17
+ error: (message?: any, ...optionalParams: any[]) => void;
18
18
  newLine: () => void;
19
19
  };
@@ -42,6 +42,7 @@ const patchPackageJson = ({ projectRoot, projectName, latestRemotionVersion, pac
42
42
  ? {
43
43
  ...newDependencies,
44
44
  '@remotion/tailwind-v4': latestRemotionVersion,
45
+ tailwindcss: '4.0.0',
45
46
  }
46
47
  : newDependencies;
47
48
  const newPackageJson = JSON.stringify({
@@ -46,6 +46,7 @@ for (const packageManager of packageManagers) {
46
46
  ...packageJson.dependencies,
47
47
  '@remotion/cli': latestRemotionVersion,
48
48
  '@remotion/tailwind-v4': latestRemotionVersion,
49
+ tailwindcss: '4.0.0',
49
50
  remotion: latestRemotionVersion,
50
51
  },
51
52
  sideEffects: ['*.css'],
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.258",
6
+ "version": "4.0.259",
7
7
  "description": "Create a new Remotion project",
8
8
  "main": "dist/index.js",
9
9
  "bin": {
@@ -27,7 +27,7 @@
27
27
  "@types/tar": "6.1.1",
28
28
  "react": "19.0.0",
29
29
  "eslint": "9.14.0",
30
- "@remotion/eslint-config-internal": "4.0.258"
30
+ "@remotion/eslint-config-internal": "4.0.259"
31
31
  },
32
32
  "exports": {
33
33
  "./package.json": "./package.json",