diff options
author | 2022-07-07 18:14:25 +0000 | |
---|---|---|
committer | 2022-07-07 18:14:25 +0000 | |
commit | c191098b97df61065a65bbcbfff6daf9ecc70ea9 (patch) | |
tree | db6470afef93da168ba9513efa9b75854cc03d63 /packages/create-astro/src | |
parent | eedb32c79716a8e04acd46cb2c74c5af112e016f (diff) | |
download | astro-c191098b97df61065a65bbcbfff6daf9ecc70ea9.tar.gz astro-c191098b97df61065a65bbcbfff6daf9ecc70ea9.tar.zst astro-c191098b97df61065a65bbcbfff6daf9ecc70ea9.zip |
[ci] format
Diffstat (limited to 'packages/create-astro/src')
-rw-r--r-- | packages/create-astro/src/index.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/packages/create-astro/src/index.ts b/packages/create-astro/src/index.ts index 5399d7832..839877ab6 100644 --- a/packages/create-astro/src/index.ts +++ b/packages/create-astro/src/index.ts @@ -6,11 +6,11 @@ import { bgCyan, black, bold, cyan, dim, gray, green, red, reset, yellow } from import ora from 'ora'; import path from 'path'; import prompts from 'prompts'; +import detectPackageManager from 'which-pm-runs'; import yargs from 'yargs-parser'; import { loadWithRocketGradient, rocketAscii } from './gradient.js'; import { defaultLogLevel, logger } from './logger.js'; import { TEMPLATES } from './templates.js'; -import detectPackageManager from 'which-pm-runs'; function wait(ms: number) { return new Promise((resolve) => setTimeout(resolve, ms)); @@ -251,4 +251,3 @@ export async function main() { function emojiWithFallback(char: string, fallback: string) { return process.platform !== 'win32' ? char : fallback; } - |