v0.0.2
Pre-release
Pre-release
Release name: Sallingsund Bridge 🌉
- Update dependencies:
- Update to
[email protected]
- Update to
[email protected]
- Update to
Breaking Changes
-
This package is now pure ESM. It cannot be
require()
'd from CommonJS. This means you have the following choices:- Use ESM yourself. (preferred)
Useimport foo from 'foo'
instead ofconst foo = require('foo')
to import the package. - If the package is used in an async context, you could use
await import(…)
from CommonJS instead ofrequire(…)
. - If you cannot move to ESM yet, do not upgrade to this version.
I would strongly recommend moving to ESM. ESM can still import CommonJS packages, but CommonJS packages cannot import ESM packages synchronously.
ESM is natively supported by Node.js 12 and later.
Please note: My repos are not the place to ask ESM support questions.
- Use ESM yourself. (preferred)