summaryrefslogtreecommitdiff
path: root/packages/telemetry/src/system-info.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/telemetry/src/system-info.ts')
-rw-r--r--packages/telemetry/src/system-info.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/telemetry/src/system-info.ts b/packages/telemetry/src/system-info.ts
index 08375de7b..0953736d7 100644
--- a/packages/telemetry/src/system-info.ts
+++ b/packages/telemetry/src/system-info.ts
@@ -39,6 +39,7 @@ export type SystemInfo = {
cpuSpeed: number | null;
memoryInMb: number;
isDocker: boolean;
+ isTTY: boolean;
isWSL: boolean;
isCI: boolean;
ciName: string | null;
@@ -53,7 +54,7 @@ export function getSystemInfo(versions: { viteVersion: string; astroVersion: str
const cpus = os.cpus() || [];
- meta = {
+ return {
// Version information
nodeVersion: process.version.replace(/^v?/, ''),
viteVersion: versions.viteVersion,
@@ -69,10 +70,9 @@ export function getSystemInfo(versions: { viteVersion: string; astroVersion: str
memoryInMb: Math.trunc(os.totalmem() / Math.pow(1024, 2)),
// Environment information
isDocker: isDocker(),
+ isTTY: process.stdout.isTTY,
isWSL,
isCI,
ciName,
};
-
- return meta;
}