Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"@codemirror/lint": "6.9.2",
"@codemirror/state": "6.5.3",
"@codemirror/view": "6.39.9",
"@graphql-tools/schema": "10.0.30",
"@graphql-tools/schema": "10.0.31",
"@hasparus/lezer-json-shikified": "1.1.3",
"@headlessui/react": "^2.2.4",
"@igorkowalczyk/is-browser": "^5.1.0",
Expand Down
116 changes: 65 additions & 51 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions scripts/sync-sched/schedule-2026.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
[]
1 change: 1 addition & 0 deletions scripts/sync-sched/sync.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ async function sync(
2023: "https://graphqlconf23.sched.com/api",
2024: "https://graphqlconf2024.sched.com/api",
2025: "https://graphqlconf2025.sched.com/api",
2026: "https://graphqlconf2026.sched.com/api",
}[year]

assert(apiUrl, `API URL for year ${year} not found`)
Expand Down
6 changes: 4 additions & 2 deletions src/app/conf/2026/_data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { readSpeakers } from "../_api/sched-data"
const speakersData = require("../../../../scripts/sync-sched/speakers.json")
const equalitySets: string[][] = speakersData.equal || []

export const schedule: ScheduleSession[] = require("../../../../scripts/sync-sched/schedule-2025.json")
export const schedule: ScheduleSession[] = require("../../../../scripts/sync-sched/schedule-2026.json")

type SpeakerUsername = SchedSpeaker["username"]

Expand All @@ -22,7 +22,7 @@ for (const session of schedule) {
}
}

export const speakers: SchedSpeaker[] = readSpeakers(2025).filter(speaker =>
export const speakers: SchedSpeaker[] = readSpeakers(2026).filter(speaker =>
speakerSessions.has(speaker.username),
)

Expand All @@ -34,9 +34,11 @@ export const previousEditionSessions = new Map<
{
const schedule2023 = require("../../../../scripts/sync-sched/schedule-2023.json")
const schedule2024 = require("../../../../scripts/sync-sched/schedule-2024.json")
const schedule2025 = require("../../../../scripts/sync-sched/schedule-2025.json")

collectSessionsFromPreviousYears(schedule2023)
collectSessionsFromPreviousYears(schedule2024)
collectSessionsFromPreviousYears(schedule2025)
}

function collectSessionsFromPreviousYears(schedule: ScheduleSession[]) {
Expand Down
Loading
Loading