We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8fdc96 commit 700ec77Copy full SHA for 700ec77
scripts/generate-changelog.js
@@ -30,12 +30,7 @@ for (const file of files) {
30
.replace(/\/page$/, '');
31
32
changelogRecords.push({
33
- date: new Date(data.date).toLocaleDateString(undefined, {
34
- day: 'numeric',
35
- month: 'long',
36
- year: 'numeric',
37
- calendar: 'gregory',
38
- }),
+ date: new Date(data.date).toISOString().split('T')[0],
39
href: `https://the-guild.dev/graphql/hive/product-updates/${pathname}`,
40
title: data.title,
41
description: data.description || '',
0 commit comments