We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
es6
Currently the imports in the es6 folder reference fp-ts/lib when they should reference fp-ts/es6 (so that tree shaking can work properly), e.g.
fp-ts/lib
fp-ts/es6
https://unpkg.com/browse/@devexperts/[email protected]/es6/remote-data.js
import { constFalse, identity, constant } from 'fp-ts/lib/function';
This change has recently been made to other libraries such as io-ts and fp-ts-rxjs, for example: gcanti/fp-ts-rxjs@f35c926
https://unpkg.com/browse/[email protected]/es6/Observable.js
Related issue: gcanti/fp-ts#1044
The text was updated successfully, but these errors were encountered:
fix: rewrite imports from lib to es6 in es6 output
c6899d8
closes #46, #49
Successfully merging a pull request may close this issue.
Currently the imports in the
es6
folder referencefp-ts/lib
when they should referencefp-ts/es6
(so that tree shaking can work properly), e.g.https://unpkg.com/browse/@devexperts/[email protected]/es6/remote-data.js
This change has recently been made to other libraries such as io-ts and fp-ts-rxjs, for example: gcanti/fp-ts-rxjs@f35c926
https://unpkg.com/browse/[email protected]/es6/Observable.js
Related issue: gcanti/fp-ts#1044
The text was updated successfully, but these errors were encountered: