From 7daa7c03d9251598e092bfc481c5944f5dc2dc3e Mon Sep 17 00:00:00 2001 From: Heroman3003 <31296024+Heroman3003@users.noreply.github.com> Date: Sat, 15 Apr 2023 14:17:39 +1000 Subject: [PATCH] Merge pull request #14778 from Gurgstation/Tguibuildfix Adds PrettyBuild to Tasks for VSCode --- .vscode/tasks.json | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index a3cb84d5a8..c86b64cece 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -33,6 +33,19 @@ "problemMatcher": [], "label": "tgui: build tgfont", "detail": "node mkdist.cjs && fantasticon --config config.cjs" + }, + { + "type": "shell", + "command": "tgui/bin/tgui", + "windows": { + "command": ".\\tgui\\bin\\tgui-prettybuild.bat" + }, + "problemMatcher": [ + "$tsc", + "$eslint-stylish" + ], + "group": "build", + "label": "tgui: prettybuild" } ] -} \ No newline at end of file +}