We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f929a3 commit 27b642eCopy full SHA for 27b642e
src/index.js
@@ -68,11 +68,10 @@ async function build() {
68
69
log("Fetching next event...")
70
let next = (await fetchEvents())[0]
71
- next.date = new Date(next.date).toLocaleDateString('en-GB', {
+ next.date = new Intl.DateTimeFormat("en-GB", {
72
month: 'long',
73
day: 'numeric'
74
- })
75
- console.log(next)
+ }).format(new Date(next.date))
76
log("Fetched next event")
77
78
let data = {
src/talks.js
@@ -25,7 +25,6 @@ function extractTalk(body) {
25
}
26
27
function talks() {
28
- return []
29
return fetch(GITHUB_ISSUES, {
30
headers: {
31
Authorization: `token ${process.env.GH_TOKEN}`
0 commit comments