Skip to content
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

Fix symbols to work with Babel UMD exporting #2435

Merged
merged 3 commits into from
Apr 3, 2017

Commits on Mar 16, 2017

  1. fix(symbol/observable): will be exported as observable to better supp…

    …ort Babel UMD and others
    
    To migrate the code follow the example bellow:
    
    Before:
    
    import { $$observable } from 'rxjs/symbol/observable';
    
    After:
    
    import { observable } from 'rxjs/symbol/observable';
    
    Closes ReactiveX#2415
    DzmitryShylovich committed Mar 16, 2017
    Configuration menu
    Copy the full SHA
    ce1d46f View commit details
    Browse the repository at this point in the history
  2. fix(symbol/iterator): will be exported as iterator to better support …

    …Babel UMD and others
    
    To migrate the code follow the example bellow:
    
    Before:
    
    import { $$iterator } from 'rxjs/symbol/iterator';
    
    After:
    
    import { iterator } from 'rxjs/symbol/iterator';
    DzmitryShylovich committed Mar 16, 2017
    Configuration menu
    Copy the full SHA
    c86a40d View commit details
    Browse the repository at this point in the history
  3. fix(symbol/rxSubscriber): will be exported as rxSubscriber to better …

    …support Babel UMD and others
    
    To migrate the code follow the example bellow:
    
    Before:
    
    import { $$rxSubscriber } from 'rxjs/symbol/rxSubscriber';
    
    After:
    
    import { rxSubscriber } from 'rxjs/symbol/rxSubscriber';
    DzmitryShylovich committed Mar 16, 2017
    Configuration menu
    Copy the full SHA
    234442e View commit details
    Browse the repository at this point in the history