Skip to content

Commit

Permalink
Migrate turbo's own repo to use turbo.json
Browse files Browse the repository at this point in the history
  • Loading branch information
gsoltis committed Jan 26, 2022
1 parent 3dbf2b1 commit 45c354b
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 46 deletions.
46 changes: 0 additions & 46 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,52 +31,6 @@
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"turbo": {
"baseBranch": "origin/main",
"env": [
"CONVERTKIT_API_KEY",
"CONVERTKIT_API_SECRET",
"CONVERTKIT_FORM_ID"
],
"pipeline": {
"test": {
"outputs": [
"coverage/**/*"
],
"dependsOn": [
"^build"
]
},
"lint": {
"outputs": []
},
"dev": {
"cache": false
},
"build": {
"outputs": [
"dist/**/*",
".next/**/*"
],
"dependsOn": [
"^build"
]
},
"cli#build": {
"outputs": [
"turbo",
"turbo.exe"
],
"dependsOn": []
},
"create-turbo#test": {
"dependsOn": [
"create-turbo#build"
],
"outputs": []
}
}
},
"packageManager": "yarn@1.22.17",
"dependencies": {
"patch-package": "^6.4.7"
Expand Down
46 changes: 46 additions & 0 deletions turbo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{
"baseBranch": "origin/main",
"env": [
"CONVERTKIT_API_KEY",
"CONVERTKIT_API_SECRET",
"CONVERTKIT_FORM_ID"
],
"pipeline": {
"test": {
"outputs": [
"coverage/**/*"
],
"dependsOn": [
"^build"
]
},
"lint": {
"outputs": []
},
"dev": {
"cache": false
},
"build": {
"outputs": [
"dist/**/*",
".next/**/*"
],
"dependsOn": [
"^build"
]
},
"cli#build": {
"outputs": [
"turbo",
"turbo.exe"
],
"dependsOn": []
},
"create-turbo#test": {
"dependsOn": [
"create-turbo#build"
],
"outputs": []
}
}
}

0 comments on commit 45c354b

Please sign in to comment.