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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. 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, "packages/ui") : 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"], {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-kofi-stack",
3
- "version": "2.0.4",
3
+ "version": "2.0.6",
4
4
  "description": "Scaffold opinionated full-stack projects with Next.js, Convex, Better-Auth, and more",
5
5
  "type": "module",
6
6
  "bin": {