Skip to content

Commit

Permalink
Update tools\mix-packer
Browse files Browse the repository at this point in the history
  • Loading branch information
Belonit committed Nov 17, 2023
1 parent 7e471a6 commit ac78762
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tools/mix-packer/ExFS.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,11 @@ export default class ExFS {
const globOptions = {
nodir: true,
absolute: true,
ignore: ["*.meta", toPosixPath(path.join(folderPath, "*.pack", "**"))],
ignore: [
//
toPosixPath(path.join(folderPath, "**", "*.md")),
toPosixPath(path.join(folderPath, "*.pack", "**")),
],
};

const globPattern = toPosixPath(path.join(folderPath, "**"));
Expand Down

0 comments on commit ac78762

Please sign in to comment.