-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to Angular 16, TypeScript 5, and latest Firebase SDK (#3402)
* Update dependencies * es2020 output. refactor build.ts * Update to TS 5, Angular 16, and ng-packagr 16 formats. * db typing * use ts-ignore for zones.ts hack * drop ttsc for main build script * ci * disable caching to test CI * Actually use valid YAML * break that cache * restore restore-keys * Update build to handle main package.json * update more deps * test infra changes * break the cache * actually break the cache * build fix * Fix type errors. Successful but incomplete build. * Drop node 16 * Get tests to run * Fix firestore tests * must test perf with the default app * skip flake for safari * Safari flakes * Remove Safari tests for now * resolving comments * testing with rxfire canary * testing with another canary * new rxfire release
- Loading branch information
Showing
99 changed files
with
5,721 additions
and
7,509 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
|
||
# AngularFire | ||
The official [Angular](https://angular.io/) library for [Firebase](https://firebase.google.com/). | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,49 @@ | ||
{ | ||
"$schema": "./node_modules/@angular/cli/lib/config/schema.json", | ||
"version": 1, | ||
"newProjectRoot": ".", | ||
"projects": { | ||
"angularfire": { | ||
"projectType": "library", | ||
"root": "src", | ||
"sourceRoot": "src", | ||
"prefix": "angularfire", | ||
"architect": { | ||
"build": { | ||
"builder": "@angular-devkit/build-angular:ng-packagr", | ||
"options": { | ||
"tsConfig": "tsconfig.json", | ||
"project": "src/package.json" | ||
} | ||
"$schema": "./node_modules/@angular/cli/lib/config/schema.json", | ||
"version": 1, | ||
"newProjectRoot": ".", | ||
"projects": { | ||
"angularfire": { | ||
"projectType": "library", | ||
"root": "src", | ||
"sourceRoot": "src", | ||
"prefix": "angularfire", | ||
"architect": { | ||
"build": { | ||
"builder": "@angular-devkit/build-angular:ng-packagr", | ||
"options": { | ||
"tsConfig": "tsconfig.json", | ||
"project": "src/ng-package.json" | ||
} | ||
}, | ||
"test": { | ||
"builder": "@angular-devkit/build-angular:karma", | ||
"options": { | ||
"polyfills": [ | ||
"zone.js", | ||
"zone.js/testing" | ||
], | ||
"tsConfig": "tsconfig.spec.json", | ||
"karmaConfig": "karma.conf.js" | ||
} | ||
}, | ||
"lint": { | ||
"builder": "@angular-devkit/build-angular:tslint", | ||
"options": { | ||
"tsConfig": [ | ||
"tsconfig.json", | ||
"tsconfig.spec.json" | ||
], | ||
"exclude": [ | ||
"**/node_modules/**" | ||
] | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"test": { | ||
"builder": "@angular-devkit/build-angular:karma", | ||
"options": { | ||
"main": "src/test.ts", | ||
"tsConfig": "tsconfig.spec.json", | ||
"karmaConfig": "karma.conf.js" | ||
} | ||
}, | ||
"lint": { | ||
"builder": "@angular-devkit/build-angular:tslint", | ||
"options": { | ||
"tsConfig": [ | ||
"tsconfig.json", | ||
"tsconfig.spec.json" | ||
], | ||
"exclude": [ | ||
"**/node_modules/**" | ||
] | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"defaultProject": "angularfire", | ||
"cli": { | ||
"packageManager": "yarn", | ||
"analytics": "86795b8f-9036-4a53-929c-a7303453d677" | ||
} | ||
"cli": { | ||
"packageManager": "yarn", | ||
"analytics": "86795b8f-9036-4a53-929c-a7303453d677" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.