mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 18:22:39 +00:00
[MIRROR] Add tgui fix target (#9050)
Co-authored-by: Heroman3003 <31296024+Heroman3003@users.noreply.github.com> Co-authored-by: CHOMPStation2 <chompsation2@gmail.com>
This commit is contained in:
2
bin/tgui-fix.cmd
Normal file
2
bin/tgui-fix.cmd
Normal file
@@ -0,0 +1,2 @@
|
||||
@echo off
|
||||
call "%~dp0\..\tools\build\build.bat" --wait-on-error tgui-fix %*
|
||||
@@ -409,6 +409,20 @@ export const TguiBenchTarget = new Juke.Target({
|
||||
executes: () => yarn('tgui:bench'),
|
||||
});
|
||||
|
||||
export const TguiPrettierFix = new Juke.Target({
|
||||
dependsOn: [YarnTarget],
|
||||
executes: () => yarn('tgui:prettier-fix'),
|
||||
});
|
||||
|
||||
export const TguiEslintFix = new Juke.Target({
|
||||
dependsOn: [YarnTarget],
|
||||
executes: () => yarn('tgui:eslint-fix'),
|
||||
});
|
||||
|
||||
export const TguiFix = new Juke.Target({
|
||||
dependsOn: [TguiPrettierFix, TguiEslintFix],
|
||||
});
|
||||
|
||||
export const TestTarget = new Juke.Target({
|
||||
dependsOn: [DmTestTarget, TguiTestTarget],
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user