From 36cec4f63938cfa4f97922107e147d265c65882f Mon Sep 17 00:00:00 2001 From: Armando Navarro Date: Mon, 6 Jul 2026 22:07:13 -0700 Subject: [PATCH] fix(schematics): accept firebase-tools 15 in the peer range The optional firebase-tools peerDependency was capped at ^14.0.0, which excludes the current major (15.x). The ng add version check already accepts anything >= 14.0.0 and the schematic runs fine on 15.x, so the narrow range only produces spurious peer-dependency warnings for users on the current CLI. --- src/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/package.json b/src/package.json index c0184e5e0..d16dad42f 100644 --- a/src/package.json +++ b/src/package.json @@ -29,7 +29,7 @@ "@angular/platform-browser-dynamic": "^21.0.0", "@angular/platform-server": "^21.0.0", "rxjs": "~7.8.0", - "firebase-tools": "^14.0.0" + "firebase-tools": "^14.0.0 || ^15.0.0" }, "peerDependenciesMeta": { "firebase-tools": { "optional": true },