-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor(symbol-observable): upgrade symbol-observable to 1.0.0 #1766
Conversation
Seems I can't build passes on local / travis both,
|
Looks like an issue with the |
there are no deep imports in rxjs code base, so it's something else. also the error message looks quite bizarre, looking at https://github.com/blesh/symbol-observable it does look like it's resolving symbol-observable to index.js rather than es/index.js. you might need to tweak your system builder configuration to recognize |
Yeah, at this point, I'm thoroughly confused by the error message. I guess I'll have to dig in. |
It's apparently something about |
I've updated to 1.0.1, but it seems like the problem still isn't fixed. |
it seems tries to resolve paths in rx itself directly, |
I've amended builder script bit in #1772 with bump up dependencies, to leverage it as discussion point. It seems updated script resolves |
Closed in favor of #1772 |
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
The breaking change in
symbol-observable
is that it now exports in a standard es module format. So it can be consumed asrequire('symbol-observable').default
or with justimport whatever from 'symbol-observable';