mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-23 13:05:44 +01:00
124 lines
2.6 KiB
JSON
124 lines
2.6 KiB
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"type": "process",
|
|
"command": "tools/build/build",
|
|
"windows": {
|
|
"command": ".\\tools\\build\\build.bat"
|
|
},
|
|
"options": {
|
|
"env": {
|
|
"DM_EXE": "${config:dreammaker.byondPath}"
|
|
}
|
|
},
|
|
"problemMatcher": [
|
|
"$dreammaker",
|
|
"$tsc",
|
|
"$eslint-stylish"
|
|
],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
"dependsOn": ["dm: reparse"],
|
|
"label": "Build All"
|
|
},
|
|
{
|
|
"command": "${command:dreammaker.reparse}",
|
|
"group": "build",
|
|
"label": "dm: reparse"
|
|
},
|
|
{
|
|
"type": "shell",
|
|
"command": "tools/dreamchecker/dreamchecker",
|
|
"windows": {
|
|
"command": ".\\tools\\dreamchecker\\dreamchecker.bat \".\\tools\\dreamchecker\\dreamchecker.exe\"",
|
|
"echo": "false"
|
|
},
|
|
"group": "build",
|
|
"label": "dreamchecker"
|
|
},
|
|
{
|
|
"type": "dreammaker",
|
|
"dme": "aurorastation.dme",
|
|
"problemMatcher": [
|
|
"$dreammaker"
|
|
],
|
|
"group": "build",
|
|
"label": "dm: build - aurorastation.dme",
|
|
"dependsOrder": "sequence",
|
|
"dependsOn": [
|
|
"dreamchecker"
|
|
]
|
|
},
|
|
{
|
|
"type": "shell",
|
|
"command": "bin/tgui-build",
|
|
"windows": {
|
|
"command": ".\\bin\\tgui-build.cmd"
|
|
},
|
|
"problemMatcher": [
|
|
"$tsc",
|
|
"$eslint-stylish"
|
|
],
|
|
"group": "build",
|
|
"label": "tgui: build"
|
|
},
|
|
{
|
|
"type": "shell",
|
|
"command": "bin/tgui-dev",
|
|
"windows": {
|
|
"command": ".\\bin\\tgui-dev.cmd"
|
|
},
|
|
"problemMatcher": [
|
|
"$tsc",
|
|
"$eslint-stylish"
|
|
],
|
|
"group": "build",
|
|
"label": "tgui: dev server"
|
|
},
|
|
{
|
|
"type": "shell",
|
|
"command": "bin/tgui-bench",
|
|
"windows": {
|
|
"command": ".\\bin\\tgui-bench.cmd"
|
|
},
|
|
"problemMatcher": [
|
|
"$tsc",
|
|
"$eslint-stylish"
|
|
],
|
|
"group": "build",
|
|
"label": "tgui: bench"
|
|
},
|
|
{
|
|
"type": "shell",
|
|
"command": "bin/tgui-sonar",
|
|
"windows": {
|
|
"command": ".\\bin\\tgui-sonar.cmd"
|
|
},
|
|
"problemMatcher": [
|
|
"$tsc",
|
|
"$eslint-stylish"
|
|
],
|
|
"group": "build",
|
|
"label": "tgui: sonar"
|
|
},
|
|
{
|
|
"type": "shell",
|
|
"command": "bin/tgfont",
|
|
"windows": {
|
|
"command": ".\\bin\\tgfont.cmd"
|
|
},
|
|
"problemMatcher": [
|
|
"$tsc",
|
|
"$eslint-stylish"
|
|
],
|
|
"group": "build",
|
|
"label": "tgui: rebuild tgfont"
|
|
}
|
|
]
|
|
}
|