Skip to content

Commit

Permalink
chore(deps-dev): bump turbo
Browse files Browse the repository at this point in the history
  • Loading branch information
lishaduck committed Jul 9, 2024
1 parent 89b2f55 commit 5a1fdd5
Show file tree
Hide file tree
Showing 4 changed files with 89 additions and 58 deletions.
3 changes: 2 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ yarn-error.log*

# turbo
.turbo
turbo.json

# vercel
.vercel
Expand All @@ -39,4 +40,4 @@ dist

megalinter-reports/

pnpm-lock.yaml
pnpm-lock.yaml
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@
"dependencies": {
"@changesets/cli": "^2.26.2",
"@manypkg/cli": "^0.21.3",
"@turbo/gen": "^1.9.7",
"@turbo/gen": "^2.0.6",
"create-sheriff-config": "workspace:*",
"knip": "^5.17.3",
"prettier": "^3.1.1",
"turbo": "^1.13.0",
"turbo": "^2.0.6",
"typesync": "^0.12.0"
},
"packageManager": "[email protected]",
Expand Down
79 changes: 39 additions & 40 deletions pnpm-lock.yaml

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

61 changes: 46 additions & 15 deletions turbo.json
Original file line number Diff line number Diff line change
@@ -1,33 +1,61 @@
{
"$schema": "https://turbo.build/schema.v1.json",
"globalDependencies": ["**/.env.*local"],
"pipeline": {
"$schema": "https://turbo.build/schema.json",
"globalDependencies": [
"**/.env.*local"
],
"tasks": {
"topo": {
"dependsOn": ["^topo"]
"dependsOn": [
"^topo"
]
},
"build": {
"dependsOn": ["^build"],
"outputs": [".docusaurus/**", "dist/**"]
"dependsOn": [
"^build"
],
"outputs": [
".docusaurus/**",
"dist/**"
]
},
"start": {
"cache": false,
"persistent": true,
"outputs": ["**/.docusaurus/**/*"]
"outputs": [
"**/.docusaurus/**/*"
]
},
"typecheck": {
"dependsOn": ["^topo", "^build"],
"outputs": ["node_modules/.cache/tsbuildinfo.json"]
"dependsOn": [
"^topo",
"^build"
],
"outputs": [
"node_modules/.cache/tsbuildinfo.json"
]
},
"lint": {
"outputs": ["node_modules/.cache/.eslintcache"],
"dependsOn": ["^topo", "^build"]
"outputs": [
"node_modules/.cache/.eslintcache"
],
"dependsOn": [
"^topo",
"^build"
]
},
"validate-config": {
"outputs": ["node_modules/.cache/.eslintcache"],
"dependsOn": ["^topo", "^build"]
"outputs": [
"node_modules/.cache/.eslintcache"
],
"dependsOn": [
"^topo",
"^build"
]
},
"publint": {
"dependsOn": ["build"]
"dependsOn": [
"build"
]
},
"//#manypkg": {},
"//#knip": {},
Expand All @@ -36,6 +64,9 @@
"clean": {
"cache": false
},
"serve": { "cache": false, "persistent": true }
"serve": {
"cache": false,
"persistent": true
}
}
}

0 comments on commit 5a1fdd5

Please sign in to comment.