Skip to content

Commit 71aa3ab

Browse files
committed
chore(build): Remove obsolete manual typings
1 parent 7631ab0 commit 71aa3ab

File tree

6 files changed

+8
-436
lines changed

6 files changed

+8
-436
lines changed

docs/broccoli-system-js-cli-setup.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
```bash
1212
npm install -g angular-cli
13-
npm install -g typings
13+
npm install -g typings
1414
```
1515

1616
### 1. Create a new project
@@ -54,7 +54,7 @@ module.exports = function(defaults) {
5454
// above are the existing entries
5555
// below are the AngularFire entries
5656
'angularfire2/**/*.js',
57-
'firebase/*.js'
57+
'firebase/*.js'
5858
]
5959
});
6060
};
@@ -92,7 +92,7 @@ AngularFire 2 and Firebase need to be mapped with System.js for module loading.
9292

9393
### 6. Set up @NgModule
9494

95-
Open `/src/main.ts`, inject the Firebase providers, and specify your Firebase configuration.
95+
Open `/src/main.ts`, inject the Firebase providers, and specify your Firebase configuration.
9696
This can be found in your project at [the Firebase Console](https://console.firebase.google.com):
9797

9898
```ts
@@ -107,7 +107,8 @@ export const firebaseConfig = {
107107
apiKey: "<your-key>",
108108
authDomain: "<your-project-authdomain>",
109109
databaseURL: "<your-database-URL>",
110-
storageBucket: "<your-storage-bucket>"
110+
storageBucket: "<your-storage-bucket>",
111+
messagingSenderId: '<your-messaging-sender-id>'
111112
};
112113

113114
@NgModule({
@@ -138,7 +139,7 @@ import { AngularFire, FirebaseListObservable } from 'angularfire2';
138139
})
139140
export class <MyApp>Component {
140141
constructor(af: AngularFire) {
141-
142+
142143
}
143144
}
144145

0 commit comments

Comments
 (0)