Skip to content

Commit

Permalink
feat: upgrade turbo and run codemod
Browse files Browse the repository at this point in the history
  • Loading branch information
agrattan0820 committed Jun 28, 2024
1 parent d6cf476 commit 2ecc945
Show file tree
Hide file tree
Showing 3 changed files with 81 additions and 80 deletions.
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,11 @@
"eslint": "8.57.0",
"prettier": "^3.2.5",
"tsconfig": "workspace:*",
"turbo": "^1.13.2"
"turbo": "^2.0.5"
},
"engines": {
"node": "18"
},
"packageManager": "[email protected]"
}
"packageManager": "[email protected]",
"name": "beeeeeeeep"
}
58 changes: 29 additions & 29 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

96 changes: 48 additions & 48 deletions turbo.json
Original file line number Diff line number Diff line change
@@ -1,50 +1,50 @@
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": [
"**/.env.*local"
],
"pipeline": {
"build": {
"env": [
"CI",
"GOOGLE_CLIENT_ID",
"GOOGLE_CLIENT_SECRET",
"NEXT_PUBLIC_API_URL",
"KV_REST_API_URL",
"KV_REST_API_TOKEN",
"OPENAI_API_KEY",
"REPLICATE_API_TOKEN",
"DATABASE_URL",
"POSTGRES_URL",
"SESSION_COOKIE_DOMAIN",
"REDIS_URL",
"PORT",
"NODE_ENV",
"APP_URL"
],
"dependsOn": [
"^build"
],
"outputs": [
"dist/**",
".next/**",
"!.next/cache/**"
]
},
"start": {
"dependsOn": [
"^build"
]
},
"lint": {},
"dev": {
"cache": false,
"persistent": true
},
"test": {
"dependsOn": [
"^build"
]
"$schema": "https://turbo.build/schema.json",
"globalDependencies": [
"**/.env.*local"
],
"tasks": {
"build": {
"env": [
"CI",
"GOOGLE_CLIENT_ID",
"GOOGLE_CLIENT_SECRET",
"NEXT_PUBLIC_API_URL",
"KV_REST_API_URL",
"KV_REST_API_TOKEN",
"OPENAI_API_KEY",
"REPLICATE_API_TOKEN",
"DATABASE_URL",
"POSTGRES_URL",
"SESSION_COOKIE_DOMAIN",
"REDIS_URL",
"PORT",
"NODE_ENV",
"APP_URL"
],
"dependsOn": [
"^build"
],
"outputs": [
"dist/**",
".next/**",
"!.next/cache/**"
]
},
"start": {
"dependsOn": [
"^build"
]
},
"lint": {},
"dev": {
"cache": false,
"persistent": true
},
"test": {
"dependsOn": [
"^build"
]
}
}
}
}
}

0 comments on commit 2ecc945

Please sign in to comment.