-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprebuild.mjs
34 lines (26 loc) · 940 Bytes
/
prebuild.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import * as path from "node:path";
import * as fs from "node:fs";
import { fileURLToPath } from 'url';
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
const WORKER_URL = process.env.API_URL;
const OUTPUT_DIR = path.join(__dirname, 'src/content/advent');
async function fetchAndSaveMarkdown() {
try {
const response = await fetch(WORKER_URL);
if (!response.ok) {
throw new Error(`Failed to fetch: ${response.status} ${response.statusText}`);
}
const files = await response.json();
if (!fs.existsSync(OUTPUT_DIR)) {
fs.mkdirSync(OUTPUT_DIR, { recursive: true });
}
for (const file of files) {
const filePath = path.join(OUTPUT_DIR, `${file.fileName}.md`);
fs.writeFileSync(filePath, file.content, 'utf8');
}
} catch (error) {
console.error('Error fetching and saving Markdown files:', error);
}
}
fetchAndSaveMarkdown();