You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(reorganize): Move observable implementations under internal directory
- Moves all files from `src/observables` to `src/internal/observables`
- Updates some tests to reference those internal files, this is
temprorary
- Adds an `index.ts` file at root that exports the static observable
creation functions
BREAKING CHANGE: You can no longer import observables from
`rxjs/observable/*`, now you must import them from `rxjs` directly, like
so: `import { fromEvent, timer } from 'rxjs';`
BREAKING CHANGE: You should no longer deep import custom Observable
implementations
BREAKING CHANGE: `_throw` is now exported as `throwError`
BREAKING CHANGE: `if` is now exported as `iif`
0 commit comments