feat: add prestige system and skill upgrades with comprehensive documentation
Build and Publish Mana Loop Docker Image / build-and-publish (push) Failing after 5m57s

This commit is contained in:
Refactoring Agent
2026-05-01 15:18:09 +02:00
parent 3691aa4acc
commit 03815f27ee
52 changed files with 4056 additions and 873 deletions
+5 -2
View File
@@ -45,8 +45,11 @@ function generateTree(dir, prefix = '', isRoot = true) {
items.forEach(item => {
const itemPath = path.join(dir, item);
// Explicitly skip .git directory
if (item === '.git') {
// Explicitly skip .git directory and husky internal directory
if (item === '.git' && dir === ROOT_DIR) {
return;
}
if (item === '_' && path.basename(dir) === '.husky') {
return;
}