diff options
| author | Dhravya <[email protected]> | 2024-05-25 18:41:26 -0500 |
|---|---|---|
| committer | Dhravya <[email protected]> | 2024-05-25 18:41:26 -0500 |
| commit | 075f45986fd4d198292226e64afb71b3515576b4 (patch) | |
| tree | 5c728356cd0310f1c1c012fd6618c72a836c314b /turbo.json | |
| parent | added social material (diff) | |
| download | supermemory-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.json | 26 |
1 files changed, 15 insertions, 11 deletions
@@ -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 } |