Skip to content

Commit

Permalink
fix(rxjs): make sure esm imports from index.js by default, not Rx.js (#…
Browse files Browse the repository at this point in the history
…3316)

fixes #3315
  • Loading branch information
benlesh authored Feb 14, 2018
1 parent 92dd3d1 commit c2b00f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .make-packages.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ fs.removeSync(PKG_ROOT);

let rootPackageJson = Object.assign({}, pkg, {
name: 'rxjs',
main: './Rx.js',
typings: './Rx.d.ts'
main: './index.js',
typings: './index.d.ts'
});

// Get a list of the file names. Sort in reverse order so re-export files
Expand Down

0 comments on commit c2b00f4

Please sign in to comment.