create-kofi-stack 2.0.4 → 2.0.6
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 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -250,7 +250,7 @@ async function generateProject(config) {
|
|
|
250
250
|
} catch {
|
|
251
251
|
spinner.warn("Failed to install dependencies. Run pnpm install manually.");
|
|
252
252
|
}
|
|
253
|
-
const shadcnDir = config.structure === "monorepo" ? path2.join(config.targetDir, "
|
|
253
|
+
const shadcnDir = config.structure === "monorepo" ? path2.join(config.targetDir, "apps/web") : config.targetDir;
|
|
254
254
|
spinner.start("Installing shadcn/ui components...");
|
|
255
255
|
try {
|
|
256
256
|
await execa("pnpm", ["dlx", "shadcn@latest", "add", "--all", "-y"], {
|