diff --git a/create-turbo/templates/npm/README.md b/create-turbo/templates/npm/README.md index e7210077b19c1..7d659e27aa4be 100644 --- a/create-turbo/templates/npm/README.md +++ b/create-turbo/templates/npm/README.md @@ -27,7 +27,7 @@ This turborepo has some additional tools already setup for you: ## Setup -This repository is used in the `npx create-turbo` command, and selected when choosing which package manager you wish to use with your monorepo (NPM). +This repository is used in the `npx create-turbo@latest` command, and selected when choosing which package manager you wish to use with your monorepo (NPM). ### Build diff --git a/create-turbo/templates/pnpm/README.md b/create-turbo/templates/pnpm/README.md index d11fd4d897adc..8e1797490cc67 100644 --- a/create-turbo/templates/pnpm/README.md +++ b/create-turbo/templates/pnpm/README.md @@ -27,7 +27,7 @@ This turborepo has some additional tools already setup for you: ## Setup -This repository is used in the `npx create-turbo` command, and selected when choosing which package manager you wish to use with your monorepo (PNPM). +This repository is used in the `npx create-turbo@latest` command, and selected when choosing which package manager you wish to use with your monorepo (PNPM). ### Build diff --git a/docs/components/pages/home.tsx b/docs/components/pages/home.tsx index 143c216ff9d7c..689199ecb9981 100644 --- a/docs/components/pages/home.tsx +++ b/docs/components/pages/home.tsx @@ -73,9 +73,8 @@ const features = [ ]; function Page() { - const { theme } = useTheme(); const onClick = () => { - copy("npx create-turbo"); + copy("npx create-turbo@latest"); toast.success("Copied to clipboard"); }; return ( @@ -103,10 +102,7 @@ function Page() {