chore: Fix import.meta.vitest warnings

This commit is contained in:
Sidharth Vinod
2023-12-08 09:38:54 +05:30
parent 60f92dcdbc
commit aa4bfa0727
3 changed files with 7 additions and 1 deletions

View File

@@ -8,6 +8,8 @@ const buildType = (packageName: string) => {
out.length > 0 && console.log(out.toString());
} catch (e) {
console.error(e);
e.stdout.length > 0 && console.error(e.stdout.toString());
e.stderr.length > 0 && console.error(e.stderr.toString());
}
};