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
We're currently using node-fetch v2.6.7, but v3 was released a few months ago. We may want to use the latest version. #92 already tried to upgrade to v3 but tests failed, so we may need manual intervention to deal with the new major version (reasonable since v3 is a breaking change compared to v2). Here are the upgrade instructions.
The text was updated successfully, but these errors were encountered:
The error appears to be linked to producing (old style) require statements instead of (newer style) import. In v3 of node-fetch, only the latter is supported. Our Typescript code uses import but it seems to be compiled down to require in the actual Javascript. It looks like we need some changes to our config files to force the switch (and possibly our other import statements).
We're currently using
node-fetch
v2.6.7, but v3 was released a few months ago. We may want to use the latest version. #92 already tried to upgrade to v3 but tests failed, so we may need manual intervention to deal with the new major version (reasonable since v3 is a breaking change compared to v2). Here are the upgrade instructions.The text was updated successfully, but these errors were encountered: