-
Notifications
You must be signed in to change notification settings - Fork 20
feat(build): Upgrade build process to emit ESM modules and a UMD bundle #20
Conversation
77c7ef6
to
0c1be4f
Compare
'rxjs/operator/distinctUntilChanged': 'Rx.Observable.prototype', | ||
'rxjs/operator/do': 'Rx.Observable.prototype', | ||
'rxjs/operator/filter': 'Rx.Observable.prototype', | ||
'rxjs/operator/map': 'Rx.Observable.prototype' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You will need to map @ngrx/core here
'@ngrx/core': 'ngrx.core'
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed
entry: './release/index.js', | ||
dest: './release/bundles/router-store.umd.js', | ||
format: 'umd', | ||
moduleName: 'ngrx.router-store', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The hyphen here won't work, you will need to camel-case this to ngrx.routerStore
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed
@@ -1,22 +1,23 @@ | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This legacy file was only needed for @ngrx/core to preserve deep imports. You should not need a legacy build step.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed
0c1be4f
to
7f6c36d
Compare
No description provided.