diff options
author | 2023-11-08 15:45:43 +0000 | |
---|---|---|
committer | 2023-11-08 15:45:43 +0000 | |
commit | 143bacf3962f7b0ed3efe2bdfea844e72e10d288 (patch) | |
tree | 4e51d1b595e5e89f1f91044efb77f377b059a20d /packages/create-astro/src/index.ts | |
parent | c5010aad3475669648dc939e00f88bbb52489d0d (diff) | |
download | astro-143bacf3962f7b0ed3efe2bdfea844e72e10d288.tar.gz astro-143bacf3962f7b0ed3efe2bdfea844e72e10d288.tar.zst astro-143bacf3962f7b0ed3efe2bdfea844e72e10d288.zip |
feat: experimental i18n routing (#8974)
Co-authored-by: Florian Lefebvre <contact@florian-lefebvre.dev>
Co-authored-by: Martin Trapp <94928215+martrapp@users.noreply.github.com>
Co-authored-by: Elian ☕️ <hello@elian.codes>
Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca>
Diffstat (limited to '')
-rw-r--r-- | packages/create-astro/src/index.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/create-astro/src/index.ts b/packages/create-astro/src/index.ts index 6f6fd9bc1..3ac5d231b 100644 --- a/packages/create-astro/src/index.ts +++ b/packages/create-astro/src/index.ts @@ -20,6 +20,7 @@ process.on('SIGTERM', exit); // if you make any changes to the flow or wording here. export async function main() { // Clear console because PNPM startup is super ugly + // eslint-disable-next-line no-console console.clear(); // 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 |