mirror of
https://github.com/AeThex-Corporation/AeThex-OS.git
synced 2026-04-17 22:07:20 +00:00
- ModuleManager: Central tracking for installed marketplace modules - DataAnalyzerWidget: Real-time CPU/RAM/Battery/Storage widget (unlocked by Data Analyzer module) - BottomNavBar: Navigation bar for Projects/Chat/Marketplace/Settings - RootShell: Real root command execution utility - TerminalActivity: Full root shell with neofetch, sysinfo, real Linux commands - Terminal Pro module: Adds aliases (ll, la, h), command history - ArcadeActivity + SnakeGame: Pixel Arcade module unlocks retro games - fade_in/fade_out animations for smooth transitions
19 lines
558 B
JavaScript
19 lines
558 B
JavaScript
#!/usr/bin/env node
|
|
import fs from "fs";
|
|
import path from "path";
|
|
import { fileURLToPath } from "url";
|
|
|
|
const __dirname = path.dirname(fileURLToPath(import.meta.url));
|
|
|
|
console.log("Validating API setup for Vercel...");
|
|
|
|
const apiDir = path.resolve(__dirname, "api");
|
|
|
|
if (!fs.existsSync(apiDir)) {
|
|
console.error("❌ API directory not found at", apiDir);
|
|
process.exit(1);
|
|
}
|
|
|
|
const files = fs.readdirSync(apiDir);
|
|
console.log(`✓ Found API directory with ${files.length} entries`);
|
|
console.log("✓ Vercel will compile TypeScript files automatically");
|