diff options
| author | Dhravya Shah <[email protected]> | 2025-01-20 17:49:19 -0700 |
|---|---|---|
| committer | Dhravya Shah <[email protected]> | 2025-01-20 17:50:45 -0700 |
| commit | 47904011de646b92b1f3774f9a30bcfa118c5dc4 (patch) | |
| tree | ab0e5e79c4ad5465ceeedc9b4015be2d9d01be45 /turbo.json | |
| parent | Merge pull request #295 from supermemoryai/extension/duplicate-save-fix (diff) | |
| download | supermemory-47904011de646b92b1f3774f9a30bcfa118c5dc4.tar.xz supermemory-47904011de646b92b1f3774f9a30bcfa118c5dc4.zip | |
Supermemory v2 Release 🚀
Diffstat (limited to 'turbo.json')
| -rw-r--r-- | turbo.json | 56 |
1 files changed, 30 insertions, 26 deletions
@@ -1,28 +1,32 @@ { - "$schema": "https://turbo.build/schema.json", - "globalDependencies": ["**/.env.*local"], - "tasks": { - "build": { - "dependsOn": ["^build"], - "outputs": [".next/**", "!.next/cache/**"] - }, - "lint": { - "dependsOn": ["^lint"] - }, - "deploy": {}, - "dev": { - "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 - } - } + "$schema": "https://turbo.build/schema.json", + "ui": "stream", + "tasks": { + "build": { + "dependsOn": ["^build"], + "inputs": ["$TURBO_DEFAULT$", ".env*", ".dev.vars"], + "outputs": ["build/**", "public/build/**", "server/index.js"], + "cache": true + }, + "lint": { + "dependsOn": ["^lint"] + }, + "dev": { + "cache": false, + "persistent": true + }, + "generate-migration": { + "cache": false + }, + "migrate:local": { + "cache": false + }, + "deploy": { + "cache": true + }, + "tail": { + "cache": false, + "persistent": true + } + } } |