Project cleanup and reorganization

This commit is contained in:
adilallo
2026-01-26 15:41:25 -07:00
parent f513aecacc
commit 94a7922b30
24 changed files with 83 additions and 420 deletions
+4 -4
View File
@@ -10,10 +10,10 @@ const path = require("path");
console.log("🔍 Testing LHCI Configuration...\n");
// Check if .lighthouserc.json exists
const configPath = path.join(process.cwd(), ".lighthouserc.json");
// Check if config/lighthouse.json exists
const configPath = path.join(process.cwd(), "config/lighthouse.json");
if (fs.existsSync(configPath)) {
console.log("✅ .lighthouserc.json found");
console.log("✅ config/lighthouse.json found");
try {
const config = JSON.parse(fs.readFileSync(configPath, "utf8"));
@@ -30,7 +30,7 @@ if (fs.existsSync(configPath)) {
console.log("❌ Configuration is not valid JSON:", error.message);
}
} else {
console.log("❌ .lighthouserc.json not found");
console.log("❌ config/lighthouse.json not found");
}
// Check if @lhci/cli is installed