Closed jgaehring closed 2 years ago
Another consideration is using Promise.allSettled()
which requires Node v12.9.0 or higher. This might be helpful when handling batched requests, as for fetching multiple bundles.
I added a quick note about stating:
farmOS.js requires Node versions 12.9.0 and higher. IE 11 is not supported.
I could get into more details but that seems sufficient for now.
ESM requires Node v13.2.0 or higher.
I'm going to bump this up to 13.2.0 because that provides a lot of features (c26f6e5). Also to EcmaScript 2020 while I'm at it (214d421).
As mentioned in #23, if we want to use ES Modules instead of CommonJS, we'll need to specify that in our docs. ESM requires Node v13.2.0 or higher. Also, I've already started using
Object.fromEntries()
in theconnect
library, which requires at least v12.0.0, so in a sense we've already committed down this path; might as well just make it official and document it.