diff --git a/config/collections/index.js b/config/collections/index.js index 21758cf4..05963bb4 100644 --- a/config/collections/index.js +++ b/config/collections/index.js @@ -171,31 +171,27 @@ export const albumReleasesCalendar = (collection) => { const events = albumReleases.map(album => { const date = DateTime.fromFormat(album.date, 'MMMM d, yyyy') if (!date.isValid) return null + return { - start: [ - date.year, - date.month, - date.day - ], + start: [date.year, date.month, date.day], startInputType: 'local', startOutputType: 'local', - duration: { days: 1 }, - title: `Release: ${album.artist} / ${album.title}`, + title: `Release: ${album.artist} - ${album.title}`, description: `Check out this new album release: ${album.url}`, url: album.url, uid: `${date.toFormat('yyyyMMdd')}-${album.artist}-${album.title}@coryd.dev`, - timestamp: DateTime.now().toUTC().toFormat('yyyyMMdd\'T\'HHmmss\'Z\'') // Correctly format DTSTAMP - } + timestamp: DateTime.now().toUTC().toFormat("yyyyMMdd'T'HHmmss'Z'") + }; }).filter(event => event !== null) const { error, value } = ics.createEvents(events) if (error) { - console.error('Error creating events:', error) + console.error('Error creating events: ', error) events.forEach((event, index) => { console.error(`Event ${index}:`, event) }) return '' } - return value; + return value } \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index e00c405c..16aba237 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "coryd.dev", - "version": "21.5.2", + "version": "21.5.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "coryd.dev", - "version": "21.5.2", + "version": "21.5.3", "license": "MIT", "dependencies": { "@cdransf/api-text": "^1.4.0", diff --git a/package.json b/package.json index 2339c45f..03cad47b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "21.5.2", + "version": "21.5.3", "description": "The source for my personal site. Built using 11ty (and other tools).", "type": "module", "scripts": {