Fix sprite builder

Fixes sprite builder to not rely on sprite.ts that is generating
This commit is contained in:
2026-03-21 13:28:03 +01:00
parent 1fc21d700e
commit 6380f0bbcc
33 changed files with 143 additions and 3587 deletions
+1 -7
View File
@@ -321,14 +321,8 @@ const setProd = cb => {
cb();
};
const warnAboutTscBeingDumb = cb => {
console.log("You're probably about to see some warnings from tsc about not being able to find certain files.");
console.log("Don't worry about these. It's a known issue regarding circular build dependencies. The build should continue despite these errors.");
cb();
};
const empty = cb => cb();
const tsTools = gulp.series(warnAboutTscBeingDumb, npmScript('ts-tools'));
const tsTools = gulp.series(npmScript('ts-tools'));
const spritesTask = argv.sprites ? sprites : empty;
const buildSprites = gulp.series(tsTools, sprites);