From 290877305a5b6c102fd555fef1c56f565b30675d Mon Sep 17 00:00:00 2001 From: Zach Leatherman Date: Thu, 11 Jul 2024 10:59:58 -0500 Subject: [PATCH] Fixes https://github.com/11ty/eleventy/issues/3299 --- package.json | 2 +- src/TemplatePassthrough.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 18ab49ed6..a4e47a8a1 100755 --- a/package.json +++ b/package.json @@ -114,6 +114,7 @@ "@11ty/eleventy-utils": "^1.0.3", "@11ty/lodash-custom": "^4.17.21", "@11ty/posthtml-urls": "^1.0.0", + "@11ty/recursive-copy": "^3.0.0", "@sindresorhus/slugify": "^2.2.1", "bcp-47-normalize": "^2.3.0", "chardet": "^2.0.0", @@ -140,7 +141,6 @@ "nunjucks": "^3.2.4", "please-upgrade-node": "^3.2.0", "posthtml": "^0.16.6", - "recursive-copy": "^2.0.14", "semver": "^7.6.2", "slugify": "^1.6.6" } diff --git a/src/TemplatePassthrough.js b/src/TemplatePassthrough.js index 4dccf8a25..9fef4c90e 100644 --- a/src/TemplatePassthrough.js +++ b/src/TemplatePassthrough.js @@ -3,7 +3,7 @@ import path from "node:path"; import fs from "graceful-fs"; import isGlob from "is-glob"; -import copy from "recursive-copy"; +import copy from "@11ty/recursive-copy"; import { TemplatePath } from "@11ty/eleventy-utils"; import debugUtil from "debug";