Skip to content

Commit

Permalink
chore(deps): Upgrade turbo
Browse files Browse the repository at this point in the history
  • Loading branch information
alattalatta committed Jul 9, 2023
1 parent 91d866c commit 11062c5
Show file tree
Hide file tree
Showing 3 changed files with 78 additions and 114 deletions.
5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"test": "turbo run test",
"turbo": "turbo"
"test": "turbo run test"
},
"workspaces": [
"apps/**",
Expand All @@ -21,7 +20,7 @@
"prettier": "^3.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"turbo": "^1.3.4",
"turbo": "^1.10.7",
"typescript": "^5.1.6"
},
"packageManager": "pnpm@8.6.6"
Expand Down
116 changes: 22 additions & 94 deletions pnpm-lock.yaml

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

71 changes: 54 additions & 17 deletions turbo.json
Original file line number Diff line number Diff line change
@@ -1,38 +1,75 @@
{
"$schema": "https://turborepo.org/schema.json",
"baseBranch": "origin/main",
"pipeline": {
"build": {
"dependsOn": ["^build", "prebuild"]
"dependsOn": [
"^build",
"prebuild"
]
},
"@apps/main#build": {
"dependsOn": ["^build", "$ANALYZE"],
"outputs": [".next/**"]
"dependsOn": [
"^build"
],
"outputs": [
".next/**"
],
"env": [
"ANALYZE"
]
},
"@domain/blog#build": {
"dependsOn": ["^build"],
"inputs": ["contents/**", "scripts/**"],
"outputs": ["out/**"]
"dependsOn": [
"^build"
],
"inputs": [
"contents/**",
"scripts/**"
],
"outputs": [
"out/**"
]
},
"@domain/docs#build": {
"dependsOn": ["^build"],
"inputs": ["contents/**", "scripts/**"],
"outputs": ["out/**"]
"dependsOn": [
"^build"
],
"inputs": [
"contents/**",
"scripts/**"
],
"outputs": [
"out/**"
]
},
"@lib/bcd#build": {
"dependsOn": ["^build"],
"outputs": ["css.json", "html.json"]
"dependsOn": [
"^build"
],
"outputs": [
"css.json",
"html.json"
]
},
"dev": {
"cache": false
},
"prebuild": {
"dependsOn": ["^build"]
"dependsOn": [
"^build"
]
},
"@apps/main#prebuild": {
"dependsOn": ["^build"],
"inputs": ["scripts/**"],
"outputs": ["public/rss.xml", "public/sitemap.md.xml"]
"dependsOn": [
"^build"
],
"inputs": [
"scripts/**"
],
"outputs": [
"public/rss.xml",
"public/sitemap.md.xml"
]
},
"test": {
"outputs": []
Expand All @@ -41,4 +78,4 @@
"outputs": []
}
}
}
}

0 comments on commit 11062c5

Please sign in to comment.