Skip to content

Commit

Permalink
refactor(webSocket): update webSocket for systemjs
Browse files Browse the repository at this point in the history
  • Loading branch information
benlesh committed Apr 20, 2018
1 parent 983a198 commit 9da773b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion MIGRATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Other export points:

- `rxjs/testing`: The `TestScheduler` and friends can be found here
- `rxjs/ajax`: This is the new home for the rxjs AJAX implementation
- `rxjs/websocket`: This is the home for the rxjs web socket implementation.
- `rxjs/webSocket`: This is the home for the rxjs web socket implementation.


### Import Migration Table
Expand Down
4 changes: 2 additions & 2 deletions integration/systemjs/systemjs-compatibility-spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ System.config({
'rxjs/ajax': {main: 'index.js', defaultExtension: 'js' },
'rxjs/operators': {main: 'index.js', defaultExtension: 'js' },
'rxjs/testing': {main: 'index.js', defaultExtension: 'js' },
'rxjs/websocket': {main: 'index.js', defaultExtension: 'js' }
'rxjs/webSocket': {main: 'index.js', defaultExtension: 'js' }
}
});

Expand All @@ -17,7 +17,7 @@ Promise.all([
System.import('rxjs/ajax'),
System.import('rxjs/operators'),
System.import('rxjs/testing'),
System.import('rxjs/websocket'),
System.import('rxjs/webSocket'),
]).then(
function () { console.log('Successfully tested all entry-points with SystemJS!'); },
function (error) {
Expand Down
2 changes: 1 addition & 1 deletion tsconfig/compat/tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"rxjs/testing": ["../src/testing/index"],
"rxjs/ajax": ["../src/ajax/index"],
"rxjs/operators": ["../src/operators/index"],
"rxjs/websocket": ["../src/webSocket/index"]
"rxjs/webSocket": ["../src/webSocket/index"]
}
},
"include": [
Expand Down
2 changes: 1 addition & 1 deletion tsconfig/tsconfig.legacy-reexport.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"rxjs/testing": ["../dist/typings/testing/index"],
"rxjs/ajax": ["../dist/typings/ajax/index"],
"rxjs/operators": ["../dist/typings/operators/index"],
"rxjs/websocket": ["../dist/typings/webSocket/index"],
"rxjs/webSocket": ["../dist/typings/webSocket/index"],
"rxjs-compat": ["../dist-compat/typings/compat/Rx"],
"rxjs-compat/*": ["../dist-compat/typings/compat/*"]
}
Expand Down

0 comments on commit 9da773b

Please sign in to comment.