mirror of
https://github.com/fulpstation/fulpstation.git
synced 2025-12-10 01:57:01 +00:00
* TGU - 3/14/2024 * a * nanite source fix * Fixes Cargo * Fix polling mutating its target's plane and layer * Fixing cargo 2 --------- Co-authored-by: JohnFulpWillard <53777086+JohnFulpWillard@users.noreply.github.com>
132 lines
2.3 KiB
JSON
132 lines
2.3 KiB
JSON
{
|
|
"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"
|
|
},
|
|
{
|
|
"type": "process",
|
|
"command": "tools/build/build",
|
|
"args": ["-DLOWMEMORYMODE"],
|
|
"windows": {
|
|
"command": ".\\tools\\build\\build.bat",
|
|
"args": ["-DLOWMEMORYMODE"]
|
|
},
|
|
"options": {
|
|
"env": {
|
|
"DM_EXE": "${config:dreammaker.byondPath}"
|
|
}
|
|
},
|
|
"problemMatcher": [
|
|
"$dreammaker",
|
|
"$tsc",
|
|
"$eslint-stylish"
|
|
],
|
|
"group": {
|
|
"kind": "build"
|
|
},
|
|
"dependsOn": "dm: reparse",
|
|
"label": "Build All (low memory mode)"
|
|
},
|
|
{
|
|
"type": "dreammaker",
|
|
"dme": "tgstation.dme",
|
|
"problemMatcher": [
|
|
"$dreammaker"
|
|
],
|
|
"group": "build",
|
|
"label": "dm: build - tgstation.dme"
|
|
},
|
|
{
|
|
"command": "${command:dreammaker.reparse}",
|
|
"group": "build",
|
|
"label": "dm: reparse"
|
|
},
|
|
{
|
|
"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"
|
|
}
|
|
]
|
|
}
|