aboutsummaryrefslogtreecommitdiff
path: root/turbo.json
diff options
context:
space:
mode:
authorDhravya <[email protected]>2024-05-25 18:41:26 -0500
committerDhravya <[email protected]>2024-05-25 18:41:26 -0500
commit075f45986fd4d198292226e64afb71b3515576b4 (patch)
tree5c728356cd0310f1c1c012fd6618c72a836c314b /turbo.json
parentadded social material (diff)
downloadsupermemory-075f45986fd4d198292226e64afb71b3515576b4.tar.xz
supermemory-075f45986fd4d198292226e64afb71b3515576b4.zip
refactored UI, with shared components and UI, better rules and million lint
Diffstat (limited to 'turbo.json')
-rw-r--r--turbo.json26
1 files changed, 15 insertions, 11 deletions
diff --git a/turbo.json b/turbo.json
index e2356771..08f5cb2e 100644
--- a/turbo.json
+++ b/turbo.json
@@ -1,22 +1,26 @@
{
"$schema": "https://turbo.build/schema.json",
+ "globalDependencies": ["**/.env.*local"],
"pipeline": {
"build": {
+ "dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**"]
},
- "deploy": {
- "dependsOn": ["build", "test", "lint"]
+ "lint": {
+ "dependsOn": ["^lint"]
},
- "db:push": {},
- "db:studio": {},
- "test": {
- "dependsOn": ["build"],
- "inputs": ["src/**/*.tsx", "src/**/*.ts", "test/**/*.ts", "test/**/*.tsx"]
- },
- "lint": {},
- "type-check": {},
+ "deploy": {},
"dev": {
- "env": ["NODE_ENV=development"],
+ "env": [
+ "NODE_ENV=development",
+ "GOOGLE_CLIENT_ID",
+ "GOOGLE_CLIENT_SECRET",
+ "NEXTAUTH_SECRET",
+ "R2_ENDPOINT",
+ "R2_ACCESS_ID",
+ "R2_SECRET_KEY",
+ "R2_BUCKET_NAME"
+ ],
"cache": false,
"persistent": true
}