Skip to content

Commit

Permalink
fix(ui-devkit): Fix generation of shared module file (#318)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyratox authored Apr 23, 2020
1 parent 27b0adb commit fd73472
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/ui-devkit/src/compiler/scaffold.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,8 @@ ${extensions
.map(e =>
e.ngModules
.filter(m => m.type === 'shared')
.map(m => `import { ${m.ngModuleName} } from '${getModuleFilePath(e.id, m)}';\n`),
.map(m => `import { ${m.ngModuleName} } from '${getModuleFilePath(e.id, m)}';\n`)
.join(''),
)
.join('')}
Expand Down

0 comments on commit fd73472

Please sign in to comment.