fix(cli): Fixed transpilation order issue in tsfolders command

This commit is contained in:
2024-07-22 00:07:07 +02:00
parent 071b3e222f
commit 687f01d1a3
3 changed files with 7 additions and 2 deletions

View File

@ -41,7 +41,7 @@ export const runCli = async () => {
const indexShared = tsFolders.indexOf('ts_shared');
if (indexShared > -1) {
tsFolders.splice(indexShared, 1);
tsFolders.unshift('ts_interfaces');
tsFolders.unshift('ts_shared');
}