chore: check types before build * chore: check types before build * remove unused package.json scripts * merge Approved-by: Linus Flood
25 lines
628 B
JSON
25 lines
628 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"extends": ["//"],
|
|
"tasks": {
|
|
"lint": { "dependsOn": [] },
|
|
"build": { "dependsOn": ["clean", "include:shared", "check-types"] },
|
|
"dev": { "dependsOn": ["clean", "include:shared"] },
|
|
"test": {
|
|
"dependsOn": [
|
|
"@scandic-hotels/trpc#test",
|
|
"@scandic-hotels/common#test",
|
|
"@scandic-hotels/booking-flow#test"
|
|
]
|
|
},
|
|
"clean": {
|
|
"cache": false
|
|
},
|
|
"typegen": { "dependsOn": [] },
|
|
"check-types": { "dependsOn": ["typegen"] },
|
|
"include:shared": {
|
|
"outputs": ["public/_static/shared/**"]
|
|
}
|
|
}
|
|
}
|