[ci] yarn format
This commit is contained in:
parent
6c66d4834b
commit
e1e12eb7fe
1 changed files with 3 additions and 3 deletions
|
@ -13,7 +13,7 @@ import { createConfig } from './config.js';
|
|||
// 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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue