Skip to content

Commit 45f138d

Browse files
fix(schematics): accept firebase-tools 15 in the peer range (#3702)
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.
1 parent fef6320 commit 45f138d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"@angular/platform-browser-dynamic": "^21.0.0",
3030
"@angular/platform-server": "^21.0.0",
3131
"rxjs": "~7.8.0",
32-
"firebase-tools": "^14.0.0"
32+
"firebase-tools": "^14.0.0 || ^15.0.0"
3333
},
3434
"peerDependenciesMeta": {
3535
"firebase-tools": { "optional": true },

0 commit comments

Comments
 (0)