Skip to content

Commit 99a1bb1

Browse files
authored
Release v17 (#3471)
* Bump deps * Simplify ng-add a bit * Mark v17 peer * Mark firebase-tools v13 peer * Fix for the Firebase CLI not being logged in, should test this more * Fix for firebase.login.use failing if the user isn't changed * Fix for firebase login add
1 parent 1350920 commit 99a1bb1

File tree

10 files changed

+11445
-12641
lines changed

10 files changed

+11445
-12641
lines changed

README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,6 @@ by conforming to Angular conventions.
77

88
<strong><pre>ng add @angular/fire</pre></strong>
99

10-
_Note: If you want to ng add AngularFire and will be using Hosting/Cloud Functions, you need to configure the
11-
Firebase CLI first so that you are logged in for the schematics that are run as part of `ng add @angular/fire`.
12-
Follow [this guide](docs/install-firebase-tools.md) to have the Firebase CLI walk you through the setup._
13-
1410
- **Dependency injection** - Provide and Inject Firebase services in your components
1511
- **Zone.js wrappers** - Stable zones allow proper functionality of service workers, forms, SSR, and pre-rendering
1612
- **Observable based** - Utilize RxJS rather than callbacks for realtime streams

angular.json

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -20,24 +20,27 @@
2020
"builder": "@angular-devkit/build-angular:karma",
2121
"options": {
2222
"polyfills": [
23-
"zone.js",
24-
"zone.js/testing"
25-
],
23+
"zone.js",
24+
"zone.js/testing"
25+
],
2626
"tsConfig": "tsconfig.spec.json",
2727
"karmaConfig": "karma.conf.js"
2828
}
2929
},
30-
"lint": {
31-
"builder": "@angular-eslint/builder:lint",
32-
"options": {
33-
"lintFilePatterns": ["src/**/*.ts", "src/**/*.html"]
34-
}
35-
}
30+
"lint": {
31+
"builder": "@angular-eslint/builder:lint",
32+
"options": {
33+
"lintFilePatterns": [
34+
"src/**/*.ts",
35+
"src/**/*.html"
36+
]
37+
}
38+
}
3639
}
3740
}
3841
},
3942
"cli": {
4043
"packageManager": "npm",
4144
"analytics": "86795b8f-9036-4a53-929c-a7303453d677"
4245
}
43-
}
46+
}

0 commit comments

Comments
 (0)