Skip to content

chore(build): Remove obsolete manual typings #746

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 28, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions docs/broccoli-system-js-cli-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

```bash
npm install -g angular-cli
npm install -g typings
npm install -g typings
```

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

### 6. Set up @NgModule

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

```ts
Expand All @@ -107,7 +107,8 @@ export const firebaseConfig = {
apiKey: "<your-key>",
authDomain: "<your-project-authdomain>",
databaseURL: "<your-database-URL>",
storageBucket: "<your-storage-bucket>"
storageBucket: "<your-storage-bucket>",
messagingSenderId: '<your-messaging-sender-id>'
};

@NgModule({
Expand Down Expand Up @@ -138,7 +139,7 @@ import { AngularFire, FirebaseListObservable } from 'angularfire2';
})
export class <MyApp>Component {
constructor(af: AngularFire) {

}
}

Expand Down
Loading