Skip to content

Commit cac7ed5

Browse files
undo conf folder move
1 parent 311c9e1 commit cac7ed5

File tree

384 files changed

+212
-226
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

384 files changed

+212
-226
lines changed

.eslintrc.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ module.exports = {
136136
`src/pages/blog/**/*.{${MARKDOWN_EXT}}`,
137137
`src/pages/graphql-js/running-an-express-graphql-server.mdx`,
138138
`src/code/**/*.{${MARKDOWN_EXT}}`,
139-
`src/app/(conf)/conf/**/*.{${MARKDOWN_EXT}}`,
139+
`src/app/conf/**/*.{${MARKDOWN_EXT}}`,
140140
],
141141
rules: {
142142
// Disable `remark-lint-first-heading-level` since in blogs we don't want to enforce the first heading to be an `h1`

scripts/sync-sched/count-speakers-without-details.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import { join } from "node:path"
44
import { readFile } from "node:fs/promises"
55

6-
import type { SchedSpeaker } from "@/app/(conf)/conf/_api/sched-types"
6+
import type { SchedSpeaker } from "@/app/conf/_api/sched-types"
77

88
/**
99
* We count the number of speakers we didn't sync details for

scripts/sync-sched/sync.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,8 @@ import {
1212
getSpeakers,
1313
mergeSpeaker,
1414
RequestContext,
15-
} from "@/app/(conf)/conf/_api/sched-client"
16-
import type {
17-
ConferenceYear,
18-
SchedSpeaker,
19-
} from "@/app/(conf)/conf/_api/sched-types"
15+
} from "@/app/conf/_api/sched-client"
16+
import type { ConferenceYear, SchedSpeaker } from "@/app/conf/_api/sched-types"
2017

2118
/**
2219
* Sched API rate limit is 30 requests per minute per token.

src/_design-system/breadcrumbs.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { clsx } from "clsx"
33
import NextLink from "next/link"
44
import type { Item } from "nextra/normalize-pages"
55

6-
import CaretDown from "@/app/(conf)/conf/_design-system/pixelarticons/caret-down.svg?svgr"
6+
import CaretDown from "@/app/conf/_design-system/pixelarticons/caret-down.svg?svgr"
77

88
import { extractStringsFromReactNode } from "../components/utils/extract-strings-from-react-node"
99

src/_design-system/mdx-components/mdx-link.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { forwardRef } from "react"
22
import { clsx } from "clsx"
33

4-
import { Anchor } from "@/app/(conf)/conf/_design-system/anchor"
4+
import { Anchor } from "@/app/conf/_design-system/anchor"
55

66
export const MdxLink = forwardRef<
77
HTMLAnchorElement,

src/app/(development)/workroom/page.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import { SpeakerOpengraphImage } from "@/app/(conf)/conf/2025/components/og-images/speaker-opengraph-image"
2-
import { SessionOpengraphImage } from "@/app/(conf)/conf/2025/components/og-images/session-opengraph-image"
3-
import { GenericOpengraphImage } from "@/app/(conf)/conf/2025/components/og-images/generic-opengraph-image"
4-
import { SchedSpeaker } from "@/app/(conf)/conf/2023/types"
1+
import { SpeakerOpengraphImage } from "@/app/conf/2025/components/og-images/speaker-opengraph-image"
2+
import { SessionOpengraphImage } from "@/app/conf/2025/components/og-images/session-opengraph-image"
3+
import { GenericOpengraphImage } from "@/app/conf/2025/components/og-images/generic-opengraph-image"
4+
import { SchedSpeaker } from "@/app/conf/2023/types"
55

66
/**
77
* This is cheaper than maintaining a Storybook config.

src/app/(conf)/conf/2023/_data.ts renamed to src/app/conf/2023/_data.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ import "server-only"
33
import { SchedSpeaker, ScheduleSession } from "../_api/sched-types"
44
import { readSpeakers } from "../_api/sched-data"
55

6-
export const schedule: ScheduleSession[] = require("../../../../../scripts/sync-sched/schedule-2023.json")
6+
export const schedule: ScheduleSession[] = require("../../../../scripts/sync-sched/schedule-2023.json")
77
export const speakers: SchedSpeaker[] = readSpeakers(2023)

0 commit comments

Comments
 (0)