1
0
Fork 0
This commit is contained in:
Vojtěch Mareš 2022-09-07 01:20:40 +02:00
parent fa96a47bdf
commit 2eb1e7103f
Signed by: vojtech.mares
GPG key ID: C6827B976F17240D
12 changed files with 3066 additions and 3371 deletions

26
turbo.json Normal file
View file

@ -0,0 +1,26 @@
{
"$schema": "https://turborepo.org/schema.json",
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": [".next/**"]
},
"test": {
"dependsOn": ["build"],
"outputs": [],
"inputs": [
"src/**/*.tsx",
"src/**/*.ts",
"test/**/*.ts",
"test/**/*.tsx"
]
},
"lint": {
"outputs": []
},
"deploy": {
"dependsOn": ["build", "test", "lint"],
"outputs": []
}
}
}