chore: migrate from tailwind to mantine

This commit is contained in:
Meier Lukas
2023-12-08 23:11:37 +01:00
parent a2cedf73c0
commit d115779c85
16 changed files with 1159 additions and 6218 deletions

View File

@@ -1,17 +1,22 @@
{
"$schema": "https://turborepo.org/schema.json",
"globalDependencies": ["**/.env"],
"globalDependencies": [
"**/.env"
],
"pipeline": {
"topo": {
"dependsOn": ["^topo"]
"dependsOn": [
"^topo"
]
},
"build": {
"dependsOn": ["^build"],
"dependsOn": [
"^build"
],
"outputs": [
".next/**",
"!.next/cache/**",
"next-env.d.ts",
".expo/**",
".output/**",
".vercel/output/**"
]
@@ -21,16 +26,26 @@
"cache": false
},
"format": {
"outputs": ["node_modules/.cache/.prettiercache"],
"outputs": [
"node_modules/.cache/.prettiercache"
],
"outputMode": "new-only"
},
"lint": {
"dependsOn": ["^topo"],
"outputs": ["node_modules/.cache/.eslintcache"]
"dependsOn": [
"^topo"
],
"outputs": [
"node_modules/.cache/.eslintcache"
]
},
"typecheck": {
"dependsOn": ["^topo"],
"outputs": ["node_modules/.cache/tsbuildinfo.json"]
"dependsOn": [
"^topo"
],
"outputs": [
"node_modules/.cache/tsbuildinfo.json"
]
},
"clean": {
"cache": false
@@ -47,4 +62,4 @@
"AUTH_SECRET",
"AUTH_URL"
]
}
}