4.0.0-develop.1 (2023-03-17)
Features
- ESM Module (7e1f07a)
BREAKING CHANGES
- Importing the generator with
const ical = require('ical-generator');
(introduced with 2.1.0 / #253) will not work anymore, please useconst { default: ical } = require('ical-generator');
or move to fancy ESM imports (import ical from 'ical-generator' ;
).