create-video 4.0.126 → 4.0.128
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 +1 -1
- package/dist/pkg-managers.js +1 -0
- package/dist/resolve-project-root.d.ts +4 -1
- package/dist/templates.d.ts +1 -1
- package/dist/templates.js +17 -0
- package/package.json +1 -1
package/dist/log.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ export declare const Log: {
|
|
|
6
6
|
Color: ("black" | "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "blackBright" | "redBright" | "greenBright" | "yellowBright" | "blueBright" | "magentaBright" | "cyanBright" | "whiteBright") | ("bgBlack" | "bgRed" | "bgGreen" | "bgYellow" | "bgBlue" | "bgMagenta" | "bgCyan" | "bgWhite" | "bgGray" | "bgGrey" | "bgBlackBright" | "bgRedBright" | "bgGreenBright" | "bgYellowBright" | "bgBlueBright" | "bgMagentaBright" | "bgCyanBright" | "bgWhiteBright");
|
|
7
7
|
ForegroundColor: "black" | "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "blackBright" | "redBright" | "greenBright" | "yellowBright" | "blueBright" | "magentaBright" | "cyanBright" | "whiteBright";
|
|
8
8
|
BackgroundColor: "bgBlack" | "bgRed" | "bgGreen" | "bgYellow" | "bgBlue" | "bgMagenta" | "bgCyan" | "bgWhite" | "bgGray" | "bgGrey" | "bgBlackBright" | "bgRedBright" | "bgGreenBright" | "bgYellowBright" | "bgBlueBright" | "bgMagentaBright" | "bgCyanBright" | "bgWhiteBright";
|
|
9
|
-
Modifiers: "
|
|
9
|
+
Modifiers: "reset" | "bold" | "dim" | "italic" | "underline" | "inverse" | "hidden" | "strikethrough" | "visible";
|
|
10
10
|
stderr: chalk.Chalk & {
|
|
11
11
|
supportsColor: false | chalk.ColorSupport;
|
|
12
12
|
};
|
package/dist/pkg-managers.js
CHANGED
|
@@ -110,6 +110,7 @@ exports.getRunCommand = getRunCommand;
|
|
|
110
110
|
const getDevCommand = (manager, template) => {
|
|
111
111
|
if (template.cliId === 'remix' ||
|
|
112
112
|
template.cliId === 'next' ||
|
|
113
|
+
template.cliId === 'next-tailwind' ||
|
|
113
114
|
template.cliId === 'next-pages-dir') {
|
|
114
115
|
return `${(0, exports.getRunCommand)(manager)} dev`;
|
|
115
116
|
}
|
package/dist/templates.d.ts
CHANGED
|
@@ -21,7 +21,7 @@ export type Template = {
|
|
|
21
21
|
repoName: string;
|
|
22
22
|
homePageLabel: string;
|
|
23
23
|
longerDescription: React.ReactNode;
|
|
24
|
-
cliId: 'hello-world' | 'javascript' | 'blank' | 'next' | 'next-pages-dir' | 'remix' | 'three' | 'still' | 'tts' | 'google-tts' | 'audiogram' | 'skia' | 'tailwind' | 'overlay' | 'stargazer' | 'tiktok';
|
|
24
|
+
cliId: 'hello-world' | 'javascript' | 'blank' | 'next' | 'next-tailwind' | 'next-pages-dir' | 'remix' | 'three' | 'still' | 'tts' | 'google-tts' | 'audiogram' | 'skia' | 'tailwind' | 'overlay' | 'stargazer' | 'tiktok';
|
|
25
25
|
defaultBranch: string;
|
|
26
26
|
featuredOnHomePage: string | null;
|
|
27
27
|
} & DynamicTemplate;
|
package/dist/templates.js
CHANGED
|
@@ -41,6 +41,23 @@ exports.FEATURED_TEMPLATES = [
|
|
|
41
41
|
defaultBranch: 'main',
|
|
42
42
|
featuredOnHomePage: 'Next.js',
|
|
43
43
|
},
|
|
44
|
+
{
|
|
45
|
+
homePageLabel: 'Next.js (App dir + TailwindCSS)',
|
|
46
|
+
shortName: 'Next.js (App dir + TailwindCSS)',
|
|
47
|
+
org: 'remotion-dev',
|
|
48
|
+
repoName: 'template-next-app-dir-tailwind',
|
|
49
|
+
description: 'SaaS template for video generation apps',
|
|
50
|
+
longerDescription: 'A SaaS starter kit which has the Remotion Player and rendering via Remotion Lambda built-in. Our recommended choice for people who want to build an app that can generate videos.',
|
|
51
|
+
promoVideo: {
|
|
52
|
+
width: 1280,
|
|
53
|
+
height: 720,
|
|
54
|
+
muxId: 'RufnZIJZh6L1MAaeG02jnXuM9pK96tNuHRxmXHbWqCBI',
|
|
55
|
+
},
|
|
56
|
+
cliId: 'next-tailwind',
|
|
57
|
+
type: 'video',
|
|
58
|
+
defaultBranch: 'main',
|
|
59
|
+
featuredOnHomePage: null,
|
|
60
|
+
},
|
|
44
61
|
{
|
|
45
62
|
homePageLabel: 'Next.js (Pages dir)',
|
|
46
63
|
shortName: 'Next.js (Pages dir)',
|