summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar ematipico <ematipico@users.noreply.github.com> 2023-07-05 16:05:32 +0000
committerGravatar astrobot-houston <fred+astrobot@astro.build> 2023-07-05 16:05:32 +0000
commit44e56bb3bcc94c006206d162ae6e7b131f5cd2a8 (patch)
tree7ec297c5967a34d5c0c1e08aaba9e228c087b08f
parent6e9c295799cb6524841adbcbec21ff628d8d19c8 (diff)
downloadastro-44e56bb3bcc94c006206d162ae6e7b131f5cd2a8.tar.gz
astro-44e56bb3bcc94c006206d162ae6e7b131f5cd2a8.tar.zst
astro-44e56bb3bcc94c006206d162ae6e7b131f5cd2a8.zip
[ci] format
-rw-r--r--packages/astro/src/cli/index.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/astro/src/cli/index.ts b/packages/astro/src/cli/index.ts
index cee50ac92..1933fb9b7 100644
--- a/packages/astro/src/cli/index.ts
+++ b/packages/astro/src/cli/index.ts
@@ -1,6 +1,7 @@
/* eslint-disable no-console */
import fs from 'fs';
import * as colors from 'kleur/colors';
+import { arch, platform } from 'node:os';
import type { Arguments as Flags } from 'yargs-parser';
import yargs from 'yargs-parser';
import { ZodError } from 'zod';
@@ -19,7 +20,6 @@ import { formatConfigErrorMessage, formatErrorMessage, printHelp } from '../core
import * as event from '../events/index.js';
import { eventConfigError, eventError, telemetry } from '../events/index.js';
import { openInBrowser } from './open.js';
-import { arch, platform } from 'node:os';
type Arguments = yargs.Arguments;
type CLICommand =