make Turborepo a default addon

This commit is contained in:
Aman Varshney
2025-05-09 16:18:09 +05:30
parent f67b04b14d
commit 89caa156d0
7 changed files with 188 additions and 95 deletions

View File

@@ -55,7 +55,7 @@
"dependencies": {
"@clack/prompts": "^0.10.1",
"consola": "^3.4.2",
"execa": "^9.5.2",
"execa": "^9.5.3",
"fs-extra": "^11.3.0",
"globby": "^14.1.0",
"gradient-string": "^3.0.0",
@@ -66,7 +66,7 @@
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/globby": "^9.1.0",
"@types/node": "^22.14.1",
"@types/node": "^22.15.17",
"@types/yargs": "^17.0.33",
"tsdown": "^0.9.9",
"typescript": "^5.8.3"

View File

@@ -15,7 +15,7 @@ export const DEFAULT_CONFIG: ProjectConfig = {
database: "sqlite",
orm: "drizzle",
auth: true,
addons: [],
addons: ["turborepo"],
examples: [],
git: true,
packageManager: getUserPkgManager(),

View File

@@ -11,9 +11,9 @@
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.13",
"@radix-ui/react-scroll-area": "^1.2.6",
"@radix-ui/react-switch": "^1.2.2",
"@radix-ui/react-tooltip": "^1.2.4",
"@radix-ui/react-scroll-area": "^1.2.8",
"@radix-ui/react-switch": "^1.2.4",
"@radix-ui/react-tooltip": "^1.2.6",
"babel-plugin-react-compiler": "^19.1.0-rc.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
@@ -21,7 +21,7 @@
"fumadocs-mdx": "11.6.1",
"fumadocs-ui": "15.2.10",
"lucide-react": "^0.503.0",
"motion": "^12.8.0",
"motion": "^12.10.5",
"next": "15.3.1",
"next-themes": "^0.4.6",
"nuqs": "^2.4.3",
@@ -32,16 +32,16 @@
"tailwind-merge": "^3.2.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.4",
"@tailwindcss/postcss": "^4.1.5",
"@types/mdx": "^2.0.13",
"@types/node": "22.14.1",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"eslint": "^9.25.1",
"@types/react": "^19.1.3",
"@types/react-dom": "^19.1.3",
"eslint": "^9.26.0",
"eslint-config-next": "15.3.1",
"postcss": "^8.5.3",
"tailwindcss": "^4.1.4",
"tw-animate-css": "^1.2.8",
"tailwindcss": "^4.1.5",
"tw-animate-css": "^1.2.9",
"typescript": "^5.8.3"
}
}

View File

@@ -356,7 +356,7 @@ export const TECH_OPTIONS = {
description: "Monorepo build system",
icon: "/icon/turborepo.svg",
color: "from-gray-400 to-gray-700",
default: false,
default: true,
},
],
examples: [
@@ -548,7 +548,7 @@ export const DEFAULT_STACK: StackState = {
dbSetup: "none",
auth: "true",
packageManager: "bun",
addons: [],
addons: ["turborepo"],
examples: [],
git: "true",
install: "true",