diff options
-rw-r--r-- | .changeset/light-bikes-study.md | 5 | ||||
-rw-r--r-- | packages/astro/src/cli/add/index.ts | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/.changeset/light-bikes-study.md b/.changeset/light-bikes-study.md new file mode 100644 index 000000000..5d6e1c9e3 --- /dev/null +++ b/.changeset/light-bikes-study.md @@ -0,0 +1,5 @@ +--- +"astro": patch +--- + +Makes the warning less scary when adding 3rd-party integrations using `astro add` diff --git a/packages/astro/src/cli/add/index.ts b/packages/astro/src/cli/add/index.ts index bc01d2f50..8e2ae31c9 100644 --- a/packages/astro/src/cli/add/index.ts +++ b/packages/astro/src/cli/add/index.ts @@ -860,7 +860,7 @@ export async function validateIntegrations(integrations: string[]): Promise<Inte spinner.warn(yellow(firstPartyPkgCheck.message)); } spinner.warn( - yellow(`${bold(integration)} is not an official Astro package. Use at your own risk!`) + yellow(`${bold(integration)} is not an official Astro package.`) ); const response = await prompts({ type: 'confirm', |