diff options
author | 2023-02-26 01:53:18 +0000 | |
---|---|---|
committer | 2023-02-26 01:53:18 +0000 | |
commit | 780c583b0eabdb457a7f90f3d447b5e37e464b2c (patch) | |
tree | 5df31f0d4869c693b89e3c78d82d04fb04023102 | |
parent | 67c58c48c7187e2f9712f848a0a5783985453666 (diff) | |
download | astro-780c583b0eabdb457a7f90f3d447b5e37e464b2c.tar.gz astro-780c583b0eabdb457a7f90f3d447b5e37e464b2c.tar.zst astro-780c583b0eabdb457a7f90f3d447b5e37e464b2c.zip |
[ci] format
-rw-r--r-- | packages/create-astro/src/actions/template.ts | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/packages/create-astro/src/actions/template.ts b/packages/create-astro/src/actions/template.ts index b4144ef3d..5804fbb58 100644 --- a/packages/create-astro/src/actions/template.ts +++ b/packages/create-astro/src/actions/template.ts @@ -7,9 +7,7 @@ import fs from 'node:fs'; import path from 'node:path'; import { error, info, spinner, title } from '../messages.js'; -export async function template( - ctx: Pick<Context, 'template' | 'prompt' | 'dryRun' | 'exit'> -) { +export async function template(ctx: Pick<Context, 'template' | 'prompt' | 'dryRun' | 'exit'>) { if (!ctx.template) { const { template: tmpl } = await ctx.prompt({ name: 'template', |