diff options
author | 2022-06-14 20:32:18 +0000 | |
---|---|---|
committer | 2022-06-14 20:32:18 +0000 | |
commit | b49bf0c48077c874d98bae02439648a1fbfdf006 (patch) | |
tree | bc5c7c72727453649250a393b0533b69eddf7153 | |
parent | 5ab9d573f66beded5050cea6c48d94da33c792dd (diff) | |
download | astro-b49bf0c48077c874d98bae02439648a1fbfdf006.tar.gz astro-b49bf0c48077c874d98bae02439648a1fbfdf006.tar.zst astro-b49bf0c48077c874d98bae02439648a1fbfdf006.zip |
[ci] format
-rw-r--r-- | packages/telemetry/src/index.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/packages/telemetry/src/index.ts b/packages/telemetry/src/index.ts index be3ecfc21..26c0dd040 100644 --- a/packages/telemetry/src/index.ts +++ b/packages/telemetry/src/index.ts @@ -12,7 +12,6 @@ import * as KEY from './keys.js'; import { post } from './post.js'; import { getRawProjectId } from './project-id.js'; - export interface AstroTelemetryOptions { version: string; } @@ -103,7 +102,7 @@ export class AstroTelemetry { return this.oneWayHash(this.rawProjectId); } - private get projectMetadata(): undefined | { owner: string, name: string } { + private get projectMetadata(): undefined | { owner: string; name: string } { const projectId = this.rawProjectId; if (projectId === process.cwd()) { return; |