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
fixes #3315
  • Loading branch information
benlesh committed Feb 13, 2018
1 parent 92dd3d1 commit 470c216
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 470c216

Please sign in to comment.