From cb505cd6c626d1979b9f083c4345c332c37f6140 Mon Sep 17 00:00:00 2001 From: Aman Varshney Date: Mon, 24 Mar 2025 22:00:34 +0530 Subject: [PATCH] update install commands --- apps/cli/package.json | 5 +---- apps/web/src/app/(home)/_components/CodeContainer.tsx | 4 ++-- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/apps/cli/package.json b/apps/cli/package.json index 9b9ca40..4d3b9c3 100644 --- a/apps/cli/package.json +++ b/apps/cli/package.json @@ -22,10 +22,7 @@ "test": "vitest run", "prepublishOnly": "npm run build" }, - "files": [ - "dist", - "template" - ], + "files": ["dist", "template"], "dependencies": { "@clack/prompts": "^0.10.0", "commander": "^13.1.0", diff --git a/apps/web/src/app/(home)/_components/CodeContainer.tsx b/apps/web/src/app/(home)/_components/CodeContainer.tsx index 50fcc4a..bb3b6d6 100644 --- a/apps/web/src/app/(home)/_components/CodeContainer.tsx +++ b/apps/web/src/app/(home)/_components/CodeContainer.tsx @@ -22,8 +22,8 @@ const CodeContainer = () => { const commands = { npm: "npx create-better-t-stack@latest", - pnpm: "pnpm dlx create-better-t-stack", - bun: "bunx create-better-t-stack", + pnpm: "pnpm create better-t-stack@latest", + bun: "bun create better-t-stack@latest", }; const copyToClipboard = async (pm: "npm" | "pnpm" | "bun") => {