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
Empty file added .zealt/.gitkeep
Empty file.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions site/app/(home)/page.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Github, Terminal } from "lucide-react";
import tasksData from "../../tasks.json";
import zealtConfig from "../../../zealt.json";
import tasksData from "@/zealt/tasks.json";
import zealtConfig from "@/zealt/config.json";
import LeaderboardTable, { type LeaderboardEntry } from "./components/leaderboard-table";

type TaskTrial = {
Expand Down
2 changes: 1 addition & 1 deletion site/app/tasks/page.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import tasksDataRaw from "../../tasks.json";
import tasksDataRaw from "@/zealt/tasks.json";
import { TasksPageClient, type CompactTask, type CompactTrial } from "./components/tasks-page-client";

type RawTaskTrial = {
Expand Down
2 changes: 1 addition & 1 deletion site/scripts/compute-tasks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ async function main() {
});
}

const outputPath = path.join(siteRoot, 'tasks.json');
const outputPath = path.join(siteRoot, '../.zealt/tasks.json');

await fs.writeFile(outputPath, JSON.stringify(tasks, null, 2));
console.log(`Computed ${Object.keys(tasks).length} tasks into ${outputPath}`);
Expand Down
1 change: 1 addition & 0 deletions site/zealt
Loading