File tree Expand file tree Collapse file tree 6 files changed +4
-77
lines changed Expand file tree Collapse file tree 6 files changed +4
-77
lines changed Original file line number Diff line number Diff line change 21
21
- name : Yarn install
22
22
run : yarn
23
23
- name : Update API reports
24
- run : yarn ts-node-script scripts/exp/update-api-reports.ts
24
+ # API reports are generated as part of the build
25
+ run : yarn build
25
26
id : update-api-reports
26
27
- name : Commit & Push changes
27
28
uses : EndBug/add-and-commit@v7
Original file line number Diff line number Diff line change 22
22
],
23
23
"scripts" : {
24
24
"dev" : " lerna run --parallel --scope @firebase/* --scope firebase dev" ,
25
- "build" : " lerna run --scope @firebase/* --scope firebase --ignore @firebase/rules-unit-testing --ignore @firebase/firestore --ignore build" ,
25
+ "build" : " lerna run --scope @firebase/* --scope firebase --ignore @firebase/rules-unit-testing --ignore @firebase/firestore build" ,
26
26
"build:changed" : " ts-node-script scripts/ci-test/build_changed.ts" ,
27
27
"release:prepare" : " lerna run --scope @firebase/* add-compat-overloads && lerna run --scope @firebase/* typings:public" ,
28
28
"link:packages" : " lerna exec --scope @firebase/* --scope firebase -- yarn link" ,
Original file line number Diff line number Diff line change @@ -25,13 +25,6 @@ import { PerformanceCompatImpl } from './performance';
25
25
import { name as packageName , version } from '../package.json' ;
26
26
import { FirebasePerformance as FirebasePerformanceCompat } from '@firebase/performance-types' ;
27
27
28
- // TODO: move it to the future performance-compat-types package
29
- declare module '@firebase/component' {
30
- interface NameServiceMapping {
31
- 'performance-compat' : FirebasePerformanceCompat ;
32
- }
33
- }
34
-
35
28
function registerPerformanceCompat ( firebaseInstance : _FirebaseNamespace ) : void {
36
29
firebaseInstance . INTERNAL . registerComponent (
37
30
new Component (
Original file line number Diff line number Diff line change @@ -114,6 +114,6 @@ export interface PerformanceTrace {
114
114
115
115
declare module '@firebase/component' {
116
116
interface NameServiceMapping {
117
- 'performance' : FirebasePerformance ;
117
+ 'performance-compat ' : FirebasePerformance ;
118
118
}
119
119
}
Original file line number Diff line number Diff line change @@ -26,13 +26,6 @@ import { RemoteConfigCompatImpl } from './remoteConfig';
26
26
import { name as packageName , version } from '../package.json' ;
27
27
import { RemoteConfig as RemoteConfigCompat } from '@firebase/remote-config-types' ;
28
28
29
- // TODO: move it to remote-config-types package
30
- declare module '@firebase/component' {
31
- interface NameServiceMapping {
32
- 'remoteConfig-compat' : RemoteConfigCompat ;
33
- }
34
- }
35
-
36
29
function registerRemoteConfigCompat (
37
30
firebaseInstance : _FirebaseNamespace
38
31
) : void {
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments