create-kofi-stack 2.0.3 → 2.0.4
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/index.js +1 -13
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -89,15 +89,6 @@ async function runPrompts(projectNameArg, options) {
|
|
|
89
89
|
});
|
|
90
90
|
if (p.isCancel(marketingSite)) throw new Error("cancelled");
|
|
91
91
|
}
|
|
92
|
-
const styleVariant = await p.select({
|
|
93
|
-
message: "Which shadcn style?",
|
|
94
|
-
options: [
|
|
95
|
-
{ value: "default", label: "Default", hint: "Classic shadcn style" },
|
|
96
|
-
{ value: "new-york", label: "New York", hint: "Refined look" }
|
|
97
|
-
],
|
|
98
|
-
initialValue: "default"
|
|
99
|
-
});
|
|
100
|
-
if (p.isCancel(styleVariant)) throw new Error("cancelled");
|
|
101
92
|
const baseColor = await p.select({
|
|
102
93
|
message: "Base color for theme?",
|
|
103
94
|
options: [
|
|
@@ -154,7 +145,6 @@ async function runPrompts(projectNameArg, options) {
|
|
|
154
145
|
`${pc.cyan("Project:")} ${name}`,
|
|
155
146
|
`${pc.cyan("Structure:")} ${structure}`,
|
|
156
147
|
structure === "monorepo" ? `${pc.cyan("Marketing:")} ${marketingSite}` : null,
|
|
157
|
-
`${pc.cyan("Style:")} ${styleVariant}`,
|
|
158
148
|
`${pc.cyan("Base Color:")} ${baseColor}`,
|
|
159
149
|
`${pc.cyan("Analytics:")} ${analytics}`,
|
|
160
150
|
`${pc.cyan("Uploads:")} ${uploads}`,
|
|
@@ -177,12 +167,10 @@ async function runPrompts(projectNameArg, options) {
|
|
|
177
167
|
organizations: false
|
|
178
168
|
},
|
|
179
169
|
shadcn: {
|
|
180
|
-
componentLibrary: "base-ui",
|
|
181
|
-
styleVariant,
|
|
182
170
|
baseColor,
|
|
183
171
|
themeColor: "zinc",
|
|
184
172
|
menuAccent: "muted",
|
|
185
|
-
iconLibrary: "
|
|
173
|
+
iconLibrary: "lucide",
|
|
186
174
|
headingFont: "geist",
|
|
187
175
|
bodyFont: "geist",
|
|
188
176
|
borderRadius: "0.5",
|