Skip to content

Commit

Permalink
revert watch-filter ignoring .md files
Browse files Browse the repository at this point in the history
- it broke the watch script on directories that coincidentally had both `m` & `d` in their path. e.g. `datapacks/.../random/...`
  • Loading branch information
TheAfroOfDoom committed Jan 7, 2024
1 parent 4e92282 commit 8efdb62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package-scripts/shared-consts.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/** any file that doesn't end in `.md` (targeting READMEs) */
const globExclude = '**/*[!.md]';
const globExclude = '**/*';
const datapacksGlob = `datapacks/${globExclude}`;
const resourcepackGlob = `resourcepack/${globExclude}`;

Expand Down

0 comments on commit 8efdb62

Please sign in to comment.