diff --git a/scripts/extract-elx/extract-elx.js b/scripts/extract-elx/extract-elx.js index 8e85d81..5c34317 100644 --- a/scripts/extract-elx/extract-elx.js +++ b/scripts/extract-elx/extract-elx.js @@ -672,7 +672,7 @@ async function main() { // Process each root property console.log('\nāš™ļø Processing properties:\n'); const processedProperties = []; - const rootProps = Object.keys(data).filter(name => name !== 'powershellScript'); + const rootProps = Object.keys(data); for (const propName of rootProps) { process.stdout.write(` ${propName}... `); @@ -689,10 +689,6 @@ async function main() { console.log(`āœ“ ${typeLabel} → ${propResult.files.length} file(s)`); } - if (data.hasOwnProperty('powershellScript')) { - console.log(' powershellScript... skipped'); - } - // Create manifest console.log('\nšŸ“‹ Creating manifest...'); await createManifest(outputPath, data, processedProperties);