Add auto-index generation and update validation

This commit is contained in:
2026-04-17 02:11:28 +10:00
parent 42a1712175
commit 513dc654b0
2 changed files with 56 additions and 0 deletions

View File

@@ -48,6 +48,12 @@ for (const file of changedFiles) {
continue;
}
// Skip index.json - it's auto-generated
if (file === 'plugins/index.json') {
console.log(`⚠️ Note: index.json is auto-generated, should not be manually edited`);
continue;
}
const pluginId = file.replace('plugins/', '').replace('.json', '');
// Check if file was added or removed