Skip to content

Commit

Permalink
format code
Browse files Browse the repository at this point in the history
  • Loading branch information
beyondkmp committed Sep 14, 2024
1 parent d636346 commit 174649c
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions packages/app-builder-lib/src/util/appFileCopier.ts
Original file line number Diff line number Diff line change
Expand Up @@ -205,11 +205,10 @@ export async function computeNodeModuleFileSets(platformPackager: PlatformPackag
result[index++] = validateFileSet({ src: source, destination, files, metadata: copier.metadata })

if (dep.conflictDependency) {
for (const c of dep.conflictDependency) {
await collectNodeModules(c, path.join(destination, NODE_MODULES, c.name))
}
for (const c of dep.conflictDependency) {
await collectNodeModules(c, path.join(destination, NODE_MODULES, c.name))
}
}

}

for (const dep of deps) {
Expand Down

0 comments on commit 174649c

Please sign in to comment.