-
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
Path-mapping issue #2988
Comments
/cc @jasonaden |
The fix landed in 5.5.2 (24854cf#diff-4ac32a78649ca5bdd8e0ba38b7006a1eR7). Could this be closed then? |
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. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
RxJS version:
5.5.0
Angular-cli: 1.4.9
Code to reproduce:
import {startWith} from 'rxjs/operators/startWith'
Expected behavior:
Should import without errors
Actual behavior:
node_modules/rxjs/_esm5/operators/index.js/startWith.js doesn't exist
Note
index.js
in pathAdditional information:
The issue is probably related to
rxjs/_esm5/path-mapping.js
file:As you see,
"rxjs/operators"
is between other modules. Importing modules that are before this line works as expected, but all modules after it fail with error. I think need to move lineafter other
"rxjs/operators/..."
modules.The text was updated successfully, but these errors were encountered: