Skip to content

Commit

Permalink
increase supported Astro version to 4 (#6960)
Browse files Browse the repository at this point in the history
  • Loading branch information
leoortizz authored and inlined committed Apr 11, 2024
1 parent a5bfcc0 commit 8e0ff40
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
- Fixes bug where `firebase deploy --only firestore:rules,firestore:indexes` does not update rules and indexes. (#6966)
- Add Firebase console link after creating or restoring a Firestore database (#6949)
- Increase supported Astro version to 4 (#6960)
2 changes: 1 addition & 1 deletion src/frameworks/astro/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { getAstroVersion, getBootstrapScript, getConfig } from "./utils";
export const name = "Astro";
export const support = SupportLevel.Experimental;
export const type = FrameworkType.MetaFramework;
export const supportedRange = "2 - 3";
export const supportedRange = "2 - 4";

export async function discover(dir: string): Promise<Discovery | undefined> {
if (!existsSync(join(dir, "package.json"))) return;
Expand Down

0 comments on commit 8e0ff40

Please sign in to comment.