Skip to content

Commit 29a17ff

Browse files
committed
chore: update angular to 2.0.0-alpha.46
- AuthService: EventEmitter is now generic and requires a type - AuthService, TaskStore: EventEmitter and Observable now use the .subscribe(generatorOrNext, error, complete) method instead of .observer(generator) - imports: switch to file-relative paths - npm: update dependencies - tsconfig: set `moduleResolution: node` [angular/angular#5248] - docs: update readme
1 parent dd3604d commit 29a17ff

File tree

23 files changed

+33
-42328
lines changed

23 files changed

+33
-42328
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Todo app with Angular 2 and Firebase
55
A simple Todo app example built with **Angular 2**. The app features a **Firebase** backend with **OAuth** authentication, and an **immutable** task list. Try the demo at <a href="https://ng2-todo-app.firebaseapp.com" target="_blank">https://ng2-todo-app.firebaseapp.com</a>.
66

7-
- Angular `2.0.0-alpha.45`
7+
- Angular `2.0.0-alpha.46`
88
- Firebase
99
- JSON Datastore
1010
- OAuth authentication with GitHub, Google, and Twitter

gulpfile.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,8 @@ var autoprefixer = require('autoprefixer'),
1818
var paths = {
1919
lib: {
2020
src: [
21-
//'node_modules/angular2/bundles/angular2.min.js',
22-
//'node_modules/angular2/bundles/router.dev.{min.js,min.js.map}',
23-
'lib/*.js',
21+
'node_modules/angular2/bundles/angular2.min.js',
22+
'node_modules/angular2/bundles/router.dev.js', //{min.js,min.js.map}',
2423
'node_modules/es6-module-loader/dist/es6-module-loader.{js,js.map}',
2524
'node_modules/es6-shim/es6-shim.{map,min.js}',
2625
'node_modules/firebase/lib/firebase-web.js',

0 commit comments

Comments
 (0)