From 8efdb62c69e65be163060eae03a239404941cf34 Mon Sep 17 00:00:00 2001 From: TheAfroOfDoom Date: Sat, 6 Jan 2024 23:07:16 -0500 Subject: [PATCH] revert watch-filter ignoring `.md` files - it broke the watch script on directories that coincidentally had both `m` & `d` in their path. e.g. `datapacks/.../random/...` --- package-scripts/shared-consts.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package-scripts/shared-consts.js b/package-scripts/shared-consts.js index 9fd48866b..a58005dcc 100644 --- a/package-scripts/shared-consts.js +++ b/package-scripts/shared-consts.js @@ -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}`;