Skip to content

Commit

Permalink
turbo update
Browse files Browse the repository at this point in the history
  • Loading branch information
jerzakm committed Nov 27, 2024
1 parent 7693f16 commit e0fb8ba
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 36 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"eslint": "^7.32.0",
"prettier": "^2.5.1",
"prettier-plugin-svelte": "^3.1.0",
"turbo": "latest"
"turbo": "^2.3.3"
},
"packageManager": "[email protected]",
"dependencies": {
Expand Down
70 changes: 41 additions & 29 deletions pnpm-lock.yaml

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

22 changes: 16 additions & 6 deletions turbo.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
{
"$schema": "https://turborepo.org/schema.json",
"pipeline": {
"tasks": {
"package": {
"dependsOn": ["^package"],
"outputs": ["package/*"],
"dependsOn": [
"^package"
],
"outputs": [
"package/*"
],
"cache": false
},
"cleanup": {
Expand All @@ -14,8 +18,12 @@
"cache": false
},
"build": {
"dependsOn": ["^build"],
"outputs": ["build/**"],
"dependsOn": [
"^build"
],
"outputs": [
"build/**"
],
"cache": false
},
"build:docs": {
Expand All @@ -29,7 +37,9 @@
},
"dev": {
"cache": false,
"dependsOn": ["^package"]
"dependsOn": [
"^package"
]
}
}
}

0 comments on commit e0fb8ba

Please sign in to comment.