mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
30 lines
536 B
JSON
30 lines
536 B
JSON
{
|
|
"$schema": "https://turborepo.org/schema.json",
|
|
"pipeline": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["**/dist/**"]
|
|
},
|
|
"test": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["**/coverage/**"]
|
|
},
|
|
"lint": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": []
|
|
},
|
|
"format": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": []
|
|
},
|
|
"docs": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["**/docs/docs.json", "**/docs/docs.api.json"]
|
|
},
|
|
"changelog": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["CHANGELOG.md"]
|
|
}
|
|
}
|
|
}
|