From 1b7ed7a31a3a7a244440562a8e16aac1617c0114 Mon Sep 17 00:00:00 2001 From: Matthew Phillips Date: Tue, 30 Apr 2024 20:23:31 +0000 Subject: [PATCH] [ci] format --- packages/db/src/core/tokens.ts | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/packages/db/src/core/tokens.ts b/packages/db/src/core/tokens.ts index e1c33bf736..a49e81e367 100644 --- a/packages/db/src/core/tokens.ts +++ b/packages/db/src/core/tokens.ts @@ -2,12 +2,16 @@ import { readFile } from 'node:fs/promises'; import { homedir } from 'node:os'; import { join } from 'node:path'; import { pathToFileURL } from 'node:url'; +import ci from 'ci-info'; import { green } from 'kleur/colors'; import ora from 'ora'; import { safeFetch } from '../runtime/utils.js'; -import { MISSING_PROJECT_ID_ERROR, MISSING_SESSION_ID_CI_ERROR, MISSING_SESSION_ID_ERROR } from './errors.js'; +import { + MISSING_PROJECT_ID_ERROR, + MISSING_SESSION_ID_CI_ERROR, + MISSING_SESSION_ID_ERROR, +} from './errors.js'; import { getAstroStudioEnv, getAstroStudioUrl } from './utils.js'; -import ci from 'ci-info'; export const SESSION_LOGIN_FILE = pathToFileURL(join(homedir(), '.astro', 'session-token')); export const PROJECT_ID_FILE = pathToFileURL(join(process.cwd(), '.astro', 'link')); @@ -183,7 +187,7 @@ export async function getManagedAppTokenOrExit(token?: string): Promise