From e1e12eb7feab9f231615701914a8b39985bb5b12 Mon Sep 17 00:00:00 2001 From: FredKSchott Date: Wed, 17 Nov 2021 18:32:36 +0000 Subject: [PATCH] [ci] yarn format --- packages/create-astro/src/index.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/create-astro/src/index.ts b/packages/create-astro/src/index.ts index 9f09722d1..a4a72f6dc 100644 --- a/packages/create-astro/src/index.ts +++ b/packages/create-astro/src/index.ts @@ -10,10 +10,10 @@ import { TEMPLATES } from './templates.js'; import { createConfig } from './config.js'; // NOTE: In the v7.x version of npm, the default behavior of `npm init` was changed -// to no longer require `--` to pass args and instead pass `--` directly to us. This -// broke our arg parser, since `--` is a special kind of flag. Filtering for `--` here +// to no longer require `--` to pass args and instead pass `--` directly to us. This +// broke our arg parser, since `--` is a special kind of flag. Filtering for `--` here // fixes the issue so that create-astro now works on all npm version. -const cleanArgv = process.argv.filter(arg => arg !== '--') +const cleanArgv = process.argv.filter((arg) => arg !== '--'); const args = yargs(cleanArgv); prompts.override(args);