Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

fix: enable import of esm build #123

Merged
merged 2 commits into from
May 23, 2022
Merged

fix: enable import of esm build #123

merged 2 commits into from
May 23, 2022

Conversation

bitjson
Copy link
Contributor

@bitjson bitjson commented May 19, 2022

Node's ESM import requires file extensions for all imports: https://nodejs.org/api/esm.html#mandatory-file-extensions. Without the .js extensions, a runtime error is thrown when cashscript is imported by esm projects.

This also updates electrum-cash, where some interfaces have changed (and if another package tries to share configuration with ElectrumNetworkProvider, they'll get type errors, as this one is more restrictive).

Finally, the explicit exporting of the network classes (in src/index.ts) solves an issue that esm dependents encounter: The requested module 'cashscript' does not provide an export named 'ElectrumNetworkProvider'.

(And if you're interested in migrating to ESM, hopefully this gets you a lot closer!)

@bitjson
Copy link
Contributor Author

bitjson commented May 19, 2022

Ah, I also added 'import/extensions': ['error', { js: 'always' }], in .eslintrc.js; that makes it easier to notice when a rogue import would break esm imports at runtime.

@bitjson
Copy link
Contributor Author

bitjson commented May 19, 2022

@rkalis rkalis merged commit 9e03aae into CashScript:next May 23, 2022
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants