mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-16 04:19:39 +02:00
Move inactive projects out of active workspace: - bauntown (community website) - maerchenzauber (AI story generation) - memoro (voice memo app) - news (news aggregation) - nutriphi (nutrition tracking) - reader (reading app) - uload (URL shortener) - wisekeep (AI wisdom extraction) Update CLAUDE.md documentation: - Add presi to active projects - Document archived projects section - Update workspace configuration Archived apps can be re-activated by moving back to apps/ 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
49 lines
1.7 KiB
JavaScript
49 lines
1.7 KiB
JavaScript
import { readFile, writeFile, readdir } from 'fs/promises';
|
|
import { join } from 'path';
|
|
import { fileURLToPath } from 'url';
|
|
import { dirname } from 'path';
|
|
|
|
const __filename = fileURLToPath(import.meta.url);
|
|
const __dirname = dirname(__filename);
|
|
|
|
const contentDir = join(__dirname, 'src', 'content');
|
|
|
|
async function updateMdxFiles() {
|
|
const collections = ['guides', 'blog', 'team'];
|
|
const languages = ['de', 'en'];
|
|
|
|
for (const collection of collections) {
|
|
for (const lang of languages) {
|
|
const collectionPath = join(contentDir, collection, lang);
|
|
|
|
try {
|
|
const files = await readdir(collectionPath);
|
|
for (const file of files) {
|
|
if (!file.endsWith('.mdx')) continue;
|
|
|
|
const filePath = join(collectionPath, file);
|
|
let content = await readFile(filePath, 'utf-8');
|
|
|
|
// Extrahiere die Frontmatter
|
|
const frontmatterMatch = content.match(/^---([\s\S]*?)---/);
|
|
if (!frontmatterMatch) continue;
|
|
|
|
const frontmatter = frontmatterMatch[1];
|
|
if (!frontmatter.includes('lang:') || !frontmatter.includes('slug:')) {
|
|
// Füge lang und slug hinzu, wenn sie fehlen
|
|
const slug = file.replace('.mdx', '');
|
|
const newFrontmatter = frontmatter.trim() + `\nlang: "${lang}"\nslug: "${slug}"\n`;
|
|
content = content.replace(frontmatterMatch[0], `---\n${newFrontmatter}---`);
|
|
|
|
await writeFile(filePath, content, 'utf-8');
|
|
console.log(`Updated ${filePath}`);
|
|
}
|
|
}
|
|
} catch (error) {
|
|
console.error(`Error processing ${collectionPath}:`, error);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
updateMdxFiles().catch(console.error);
|