forked from imbytecat/fullstack-starter
26 lines
627 B
JSON
26 lines
627 B
JSON
{
|
|
"$schema": "../../node_modules/turbo/schema.json",
|
|
"extends": ["//"],
|
|
"tasks": {
|
|
"build": {
|
|
"outputs": ["out/**"]
|
|
},
|
|
"dist": {
|
|
"dependsOn": ["build", "@furtherverse/server#compile"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"dist:linux": {
|
|
"dependsOn": ["build", "@furtherverse/server#compile:linux"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"dist:mac": {
|
|
"dependsOn": ["build", "@furtherverse/server#compile:darwin"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"dist:win": {
|
|
"dependsOn": ["build", "@furtherverse/server#compile:windows"],
|
|
"outputs": ["dist/**"]
|
|
}
|
|
}
|
|
}
|