Skip to content

Commit

Permalink
Fix non-stable versions for astro add (#12095)
Browse files Browse the repository at this point in the history
  • Loading branch information
TheOtterlord authored Oct 1, 2024
1 parent 12dae50 commit 76c5fbd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/real-nails-tan.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'astro': patch
---

Fix installing non-stable versions of integrations with `astro add`
3 changes: 2 additions & 1 deletion packages/astro/src/cli/add/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -608,7 +608,8 @@ async function resolveRangeToInstallSpecifier(name: string, range: string): Prom
if (versions instanceof Error) return name;
// Filter out any prerelease versions, but fallback if there are no stable versions
const stableVersions = versions.filter((v) => !v.includes('-'));
const maxStable = maxSatisfying(stableVersions.length !== 0 ? stableVersions : versions, range);
const maxStable = maxSatisfying(stableVersions, range) ?? maxSatisfying(versions, range);
if (!maxStable) return name;
return `${name}@^${maxStable}`;
}

Expand Down

0 comments on commit 76c5fbd

Please sign in to comment.