mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-01-04 06:23:19 +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:
@@ -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