mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-05 07:44:38 +00:00
17 lines
502 B
TypeScript
17 lines
502 B
TypeScript
import { NextResponse } from "next/server";
|
|
import * as fs from "node:fs";
|
|
import * as path from "node:path";
|
|
|
|
export async function GET() {
|
|
const directoryPath = path.join(process.cwd(), "public/changelog");
|
|
const files = fs.readdirSync(directoryPath);
|
|
const current = "3.0.1";
|
|
const previous = [];
|
|
files.forEach((file) => {
|
|
if (file != `${current}.md`) {
|
|
previous.push(file.replace(".md", ""));
|
|
}
|
|
});
|
|
|
|
return NextResponse.json({ version: current, previous: previous });
|
|
}
|