aboutsummaryrefslogtreecommitdiff
path: root/turbo.json
diff options
context:
space:
mode:
authorDhravya Shah <[email protected]>2025-01-20 17:49:19 -0700
committerDhravya Shah <[email protected]>2025-01-20 17:50:45 -0700
commit47904011de646b92b1f3774f9a30bcfa118c5dc4 (patch)
treeab0e5e79c4ad5465ceeedc9b4015be2d9d01be45 /turbo.json
parentMerge pull request #295 from supermemoryai/extension/duplicate-save-fix (diff)
downloadsupermemory-47904011de646b92b1f3774f9a30bcfa118c5dc4.tar.xz
supermemory-47904011de646b92b1f3774f9a30bcfa118c5dc4.zip
Supermemory v2 Release 🚀
Diffstat (limited to 'turbo.json')
-rw-r--r--turbo.json56
1 files changed, 30 insertions, 26 deletions
diff --git a/turbo.json b/turbo.json
index f72e1454..9b6ba7e4 100644
--- a/turbo.json
+++ b/turbo.json
@@ -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
+ }
+ }
}