Skip to content

Commit

Permalink
Merge pull request #515 from lijax/copy-asset-fix
Browse files Browse the repository at this point in the history
bugfix(cli): use outDir from asset item instead of the default one
  • Loading branch information
kamilmysliwiec committed Feb 6, 2020
2 parents 4b3d8bc + ac61351 commit 86984f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/compiler/assets-manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export class AssetsManager {
const copyFiles = (item: AssetEntry) =>
new Promise((resolve, reject) =>
copyfiles(
[(item as any).glob!, outDir],
[(item as any).glob!, (item as any).outDir!],
{
exclude: item.exclude,
flat: item.flat,
Expand Down

0 comments on commit 86984f4

Please sign in to comment.