ReactiveX / IxJS

The Interactive Extensions for JavaScript
https://reactivex.io/IxJS/
MIT License
1.32k stars 73 forks source link

Fix exports #371

Closed trxcllnt closed 1 month ago

trxcllnt commented 2 months ago

With these changes, all the following forms are now valid:

import * as it from 'ix/iterable';
import * as ai from 'ix/asynciterable';
import * as itOps from 'ix/iterable/operators';
import * as aiOps from 'ix/asynciterable/operators';

Before, the only way to import all exports (across all published packages) was to import from the top-level:

import * as itOps from 'ix/Ix.iterable.operators';

Closes #370