Skip to content

Commit

Permalink
chore: resolve conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilmysliwiec committed Oct 21, 2024
2 parents 06e94dd + 3664ed0 commit 486ac60
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions lib/compiler/assets-manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export class AssetsManager {
}

public copyAssets(
configuration: Required<Configuration>,
configuration: Required,
appName: string,
outDir: string,
watchAssetsMode: boolean,
Expand Down Expand Up @@ -103,7 +103,10 @@ export class AssetsManager {

this.watchers.push(watcher);
} else {
const matchedPaths = sync(item.glob, { ignore: item.exclude });
const matchedPaths = sync(item.glob, {
ignore: item.exclude,
dot: true,
});
const files = item.glob.endsWith('*')
? matchedPaths.filter((matched) => statSync(matched).isFile())
: matchedPaths.flatMap((matched) => {
Expand Down

0 comments on commit 486ac60

Please sign in to comment.