From cd8469947bb63b4233f3459614c5210feac1da96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E7=91=9E=E4=B8=B0?= Date: Fri, 3 Mar 2023 23:41:11 +0800 Subject: [PATCH] Remove redundant comments when `astro add` update `astro.config.mjs` (#6412) * Remove redundant comments when update * add \n --------- Co-authored-by: Nate Moore --- .changeset/lovely-elephants-peel.md | 5 +++++ packages/astro/src/core/add/index.ts | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .changeset/lovely-elephants-peel.md diff --git a/.changeset/lovely-elephants-peel.md b/.changeset/lovely-elephants-peel.md new file mode 100644 index 0000000000..7dfe25b9cb --- /dev/null +++ b/.changeset/lovely-elephants-peel.md @@ -0,0 +1,5 @@ +--- +'astro': patch +--- + +Remove redundant comments when `astro add` update `astro.config.mjs` diff --git a/packages/astro/src/core/add/index.ts b/packages/astro/src/core/add/index.ts index d90075ce78..3abe00db97 100644 --- a/packages/astro/src/core/add/index.ts +++ b/packages/astro/src/core/add/index.ts @@ -507,7 +507,7 @@ async function updateAstroConfig({ let output = await generate(ast); const comment = '// https://astro.build/config'; const defaultExport = 'export default defineConfig'; - output = output.replace(` ${comment}`, ''); + output = output.replace(`\n${comment}`, ''); output = output.replace(`${defaultExport}`, `\n${comment}\n${defaultExport}`); if (input === output) {