feat(facade): added support for observables

This commit is contained in:
vsavkin
2015-03-24 13:45:39 -07:00
parent 43f4374944
commit 9b3b3d325f
10 changed files with 187 additions and 4 deletions

View File

@ -1,6 +1,7 @@
// Use "register" extension from systemjs.
// That's what Traceur outputs: `System.register()`.
register(System);
cjs(System);
jasmine.DEFAULT_TIMEOUT_INTERVAL = 50;
@ -14,7 +15,8 @@ System.baseURL = '/base/modules/';
// So that we can import packages like `core/foo`, instead of `core/src/foo`.
System.paths = {
'*': './*.js',
'transpiler/*': '../tools/transpiler/*.js'
'transpiler/*': '../tools/transpiler/*.js',
'rx/*': '../node_modules/rx/*.js'
}
// Import all the specs, execute their `main()` method and kick off Karma (Jasmine).