diff options
author | 2023-08-14 19:25:29 +0000 | |
---|---|---|
committer | 2023-08-14 19:25:29 +0000 | |
commit | 1e9902177d1a91a16352d0b71c46eb72031d727e (patch) | |
tree | 48c93297525d97afe82a81383d8783375642fffe /packages/create-astro/src/actions/git.ts | |
parent | 44cf30a25209b331e6e8a95a4b40a768ede3604a (diff) | |
download | astro-1e9902177d1a91a16352d0b71c46eb72031d727e.tar.gz astro-1e9902177d1a91a16352d0b71c46eb72031d727e.tar.zst astro-1e9902177d1a91a16352d0b71c46eb72031d727e.zip |
[ci] format
Diffstat (limited to 'packages/create-astro/src/actions/git.ts')
-rw-r--r-- | packages/create-astro/src/actions/git.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/create-astro/src/actions/git.ts b/packages/create-astro/src/actions/git.ts index 9711387b4..c2a59b0b3 100644 --- a/packages/create-astro/src/actions/git.ts +++ b/packages/create-astro/src/actions/git.ts @@ -3,8 +3,8 @@ import path from 'node:path'; import type { Context } from './context'; import { color } from '@astrojs/cli-kit'; -import { shell } from '../shell.js'; import { error, info, spinner, title } from '../messages.js'; +import { shell } from '../shell.js'; export async function git(ctx: Pick<Context, 'cwd' | 'git' | 'yes' | 'prompt' | 'dryRun'>) { if (fs.existsSync(path.join(ctx.cwd, '.git'))) { |