File tree 4 files changed +8
-4
lines changed
4 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -29,9 +29,14 @@ build/Release
29
29
# Dependency directories
30
30
node_modules
31
31
jspm_packages
32
+ typings
32
33
33
34
# Optional npm cache directory
34
35
.npm
35
36
36
37
# Optional REPL history
37
38
.node_repl_history
39
+
40
+ # Generated files
41
+ app /** /* .js
42
+ app /** /* .js.map
Original file line number Diff line number Diff line change
1
+ export * from './fake-backend' ;
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import { FormsModule } from '@angular/forms';
4
4
import { HttpModule } from '@angular/http' ;
5
5
6
6
// used to create fake backend
7
- import { fakeBackendProvider } from './_helpers/fake-backend ' ;
7
+ import { fakeBackendProvider } from './_helpers/index ' ;
8
8
import { MockBackend , MockConnection } from '@angular/http/testing' ;
9
9
import { BaseRequestOptions } from '@angular/http' ;
10
10
Original file line number Diff line number Diff line change 1
1
import { Component , OnInit } from '@angular/core' ;
2
- import { ROUTER_DIRECTIVES } from '@angular/router' ;
3
2
4
3
import { User } from '../_models/index' ;
5
4
import { UserService } from '../_services/index' ;
6
5
7
6
@Component ( {
8
7
moduleId : module . id ,
9
- templateUrl : 'home.component.html' ,
10
- directives : [ ROUTER_DIRECTIVES ] ,
8
+ templateUrl : 'home.component.html'
11
9
} )
12
10
13
11
export class HomeComponent implements OnInit {
You can’t perform that action at this time.
0 commit comments