summaryrefslogtreecommitdiff
path: root/packages/create-astro
diff options
context:
space:
mode:
Diffstat (limited to 'packages/create-astro')
-rw-r--r--packages/create-astro/package.json2
-rw-r--r--packages/create-astro/src/index.ts4
2 files changed, 3 insertions, 3 deletions
diff --git a/packages/create-astro/package.json b/packages/create-astro/package.json
index 7aa1b62f6..36dd357c7 100644
--- a/packages/create-astro/package.json
+++ b/packages/create-astro/package.json
@@ -32,7 +32,7 @@
"//b": "DEPENDENCIES IS FOR UNBUNDLED PACKAGES",
"dependencies": {
"@astrojs/cli-kit": "^0.3.1",
- "giget": "1.1.2"
+ "giget": "1.1.3"
},
"devDependencies": {
"arg": "^5.0.2",
diff --git a/packages/create-astro/src/index.ts b/packages/create-astro/src/index.ts
index 3ac5d231b..f641e876e 100644
--- a/packages/create-astro/src/index.ts
+++ b/packages/create-astro/src/index.ts
@@ -19,9 +19,9 @@ process.on('SIGTERM', exit);
// https://github.com/withastro/docs/blob/main/src/pages/en/install/auto.md
// if you make any changes to the flow or wording here.
export async function main() {
- // Clear console because PNPM startup is super ugly
+ // Add some extra spacing from the noisy npm/pnpm init output
// eslint-disable-next-line no-console
- console.clear();
+ console.log('');
// 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