Skip to content

Commit 98a0f6e

Browse files
committed
⚒️ Setup turbo
1 parent 5362993 commit 98a0f6e

File tree

4 files changed

+175
-41
lines changed

4 files changed

+175
-41
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,3 +39,6 @@ yarn-error.log*
3939
# typescript
4040
*.tsbuildinfo
4141
next-env.d.ts
42+
43+
44+
.turbo

package-lock.json

Lines changed: 153 additions & 40 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,12 @@
1313
"class-variance-authority": "^0.7.1",
1414
"clsx": "^2.1.1",
1515
"lucide-react": "^0.556.0",
16-
"next": "16.0.7",
16+
"next": "^16.0.10",
1717
"react": "19.2.0",
1818
"react-dom": "19.2.0",
1919
"tailwind-merge": "^3.4.0"
2020
},
21+
"packageManager": "npm@8.5.0",
2122
"devDependencies": {
2223
"@tailwindcss/postcss": "^4",
2324
"@types/node": "^20",
@@ -26,6 +27,7 @@
2627
"eslint": "^9",
2728
"eslint-config-next": "16.0.7",
2829
"tailwindcss": "^4",
30+
"turbo": "^2.6.3",
2931
"tw-animate-css": "^1.4.0",
3032
"typescript": "^5"
3133
}

turbo.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"$schema": "https://turborepo.com/schema.json",
3+
"tasks": {
4+
"build": {
5+
"dependsOn": ["^build"],
6+
"outputs": [".next/**", "!.next/cache/**"]
7+
},
8+
"check-types": {
9+
"dependsOn": ["^check-types"]
10+
},
11+
"dev": {
12+
"persistent": true,
13+
"cache": false
14+
}
15+
}
16+
}

0 commit comments

Comments
 (0)