mirror of
https://github.com/CringeStudios/element-desktop.git
synced 2025-01-18 15:34:59 +01:00
Update all non-major dependencies (#2064)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
392ac3c80a
commit
178efff2ec
@ -12,9 +12,9 @@ const argv = parseArgs(process.argv.slice(2), {});
|
|||||||
const watch = argv.w;
|
const watch = argv.w;
|
||||||
const verbose = argv.v;
|
const verbose = argv.v;
|
||||||
|
|
||||||
function errCheck(err?: Error): void {
|
function errCheck(err: unknown): void {
|
||||||
if (err) {
|
if (err) {
|
||||||
console.error(err.message);
|
console.error(err instanceof Error ? err.message : err);
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user