This repository was archived by the owner on Jul 27, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 33
33
"karma-firefox-launcher" : " ^0.1.7" ,
34
34
"karma-jasmine" : " ^0.3.6" ,
35
35
"reflect-metadata" : " ^0.1.2" ,
36
+ "rxjs" : " ^5.0.0-beta.6" ,
36
37
"systemjs" : " ^0.19.11" ,
37
38
"typescript" : " ^1.7.5" ,
38
39
"yargs" : " ^3.31.0" ,
Original file line number Diff line number Diff line change @@ -12,14 +12,15 @@ System.config({
12
12
//transpiler: 'typescript',
13
13
map : {
14
14
'typescript' : 'node_modules/typescript/lib/typescript.js' ,
15
- 'angular2 ' : 'node_modules/angular2 ' ,
15
+ '@angular ' : 'node_modules/@angular ' ,
16
16
'rxjs' : 'node_modules/rxjs' ,
17
17
'spec' : 'spec' ,
18
18
'db' : 'src'
19
19
} ,
20
20
packages : {
21
- 'angular2' : {
22
- defaultExtension : 'js'
21
+ '@angular/core' : {
22
+ defaultExtension : 'js' ,
23
+ main : 'index.js'
23
24
} ,
24
25
'rxjs' : {
25
26
defaultExtension : 'js'
@@ -36,7 +37,7 @@ System.config({
36
37
37
38
// Import all the specs, execute their `main()` method and kick off Karma (Jasmine).
38
39
System . import ( 'spec' ) . then ( function ( mod ) {
39
- return ;
40
+ return ;
40
41
} )
41
42
. catch ( function ( err ) {
42
43
console . log ( err ) ;
@@ -50,4 +51,4 @@ System.import('spec').then(function(mod) {
50
51
51
52
function onlySpecFiles ( path ) {
52
53
return / _ s p e c \. j s $ / . test ( path ) ;
53
- }
54
+ }
You can’t perform that action at this time.
0 commit comments