Skip to content

Commit 264c353

Browse files
committed
[FIX] ui5Framework.mergeTrees: Do not abort merge if a project has already been processed
Resolves #354
1 parent 0753eb3 commit 264c353

File tree

2 files changed

+536
-1
lines changed

2 files changed

+536
-1
lines changed

lib/translators/ui5Framework.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ module.exports = {
221221
// Otherwise the isFrameworkProject check would detect framework dependencies added
222222
// at an earlier processing of the project and yield incorrect logging.
223223
log.verbose(`Project ${project.metadata.name} (${project.id}) has already been processed`);
224-
return;
224+
continue;
225225
}
226226
processedProjects.push(project.id);
227227

0 commit comments

Comments
 (0)