Skip to content

Commit

Permalink
Updates fast-glob dep
Browse files Browse the repository at this point in the history
  • Loading branch information
zachleat committed Jan 14, 2025
1 parent a2e5577 commit 55f30b7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
10 changes: 5 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@
"debug": "^4.4.0",
"dependency-graph": "^1.0.0",
"entities": "^6.0.0",
"fast-glob": "3.3.2",
"fast-glob": "^3.3.3",
"filesize": "^10.1.6",
"graceful-fs": "^4.2.11",
"gray-matter": "^4.0.3",
Expand Down
5 changes: 3 additions & 2 deletions test/EleventyFilesGitIgnoreEleventyIgnoreTest.js
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ test("Get ignores (both .eleventyignore and .gitignore exists, but .gitignore is
]);
});

test("Bad expected output, this indicates a bug upstream in a dependency. Input to 'src' and empty includes dir (issue #403, full paths in eleventyignore)", async (t) => {
test("Bad expected output, this indicates a bug upstream in a dependency (update, was fixed in fast-glob@3.3.3). Input to 'src' and empty includes dir (issue #403, full paths in eleventyignore)", async (t) => {
let eleventyConfig = await getTemplateConfigInstanceCustomCallback({
input: "test/stubs-403",
output: "_site",
Expand All @@ -209,8 +209,9 @@ test("Bad expected output, this indicates a bug upstream in a dependency. Input

t.deepEqual(await evf.getFiles(), [
"./test/stubs-403/template.liquid",
// UPDATE: this was fixed in fast-glob@3.3.3
// This should be excluded from this list but is not because the ignore content used an absolutePath above.
"./test/stubs-403/_includes/include.liquid",
// "./test/stubs-403/_includes/include.liquid",
]);
});

Expand Down

0 comments on commit 55f30b7

Please sign in to comment.