Skip to content

Commit

Permalink
chore: fix rxjs System bundling (#2109)
Browse files Browse the repository at this point in the history
Fix #2105
  • Loading branch information
mgechev authored Oct 21, 2017
1 parent 257cfc0 commit d6abbf9
Show file tree
Hide file tree
Showing 3 changed files with 67 additions and 186 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@
"slash": "~1.0.0",
"source-map-explorer": "^1.5.0",
"supports-color": "^4.4.0",
"systemjs-builder": "0.16.11",
"systemjs-builder": "0.16.12",
"temp": "^0.8.3",
"tildify": "^1.2.0",
"traceur": "^0.0.111",
Expand All @@ -158,7 +158,7 @@
"@angular/service-worker": "^1.0.0-beta.16",
"core-js": "^2.5.1",
"intl": "^1.2.5",
"rxjs": "^5.4.3",
"rxjs": "^5.5.0",
"systemjs": "0.20.19",
"zone.js": "0.8.18"
}
Expand Down
3 changes: 2 additions & 1 deletion tools/tasks/seed/build.bundle.rxjs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,12 @@ export = (done: any) => {
minify: true,
mangle: false
};
var builder = new Builder('./');
const builder = new Builder('./');
builder.config({
paths: {
'n:*': 'node_modules/*',
'rxjs/*': 'node_modules/rxjs/*.js',
'rxjs/operators': 'node_modules/rxjs/operators/index.js'
},
map: {
'rxjs': 'n:rxjs',
Expand Down
Loading

0 comments on commit d6abbf9

Please sign in to comment.