fix(release): make ECC 2.2 ready to publish

This commit is contained in:
haelyra
2026-08-24 20:15:12 -04:00
parent 528dbea019
commit 2c5a91a1d6
15 changed files with 259 additions and 93 deletions
+6 -1
View File
@@ -80,7 +80,12 @@ function validateLegacyTarget(target) {
throw new Error(`Unknown install target: ${target}. Expected one of ${SUPPORTED_INSTALL_TARGETS.join(', ')}`);
}
const IGNORED_DIRECTORY_NAMES = new Set(['node_modules', '.git', '__pycache__']);
const IGNORED_DIRECTORY_NAMES = new Set([
'node_modules',
'.git',
'__pycache__',
'.pytest_cache',
]);
const IGNORED_FILE_EXTENSIONS = new Set(['.pyc', '.pyo', '.pyd']);
function listFilesRecursive(dirPath) {