Skip to content

Commit

Permalink
refactor(glob-assets): remove unnecessary option when invoking globby()
Browse files Browse the repository at this point in the history
gitignore: false is the default behaviour of globby
  • Loading branch information
oscard0m committed Sep 13, 2024
1 parent 7981b08 commit 3591be4
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion lib/glob-assets.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ export default async function globAssets({ cwd }, assets) {
const globbed = await globby(glob, {
cwd,
expandDirectories: false, // TODO Temporary workaround for https://github.com/mrmlnc/fast-glob/issues/47
gitignore: false,
dot: true,
onlyFiles: false,
});
Expand Down

0 comments on commit 3591be4

Please sign in to comment.