@anydigital/11ty-bricks 1.0.0-alpha.11 → 1.0.0-alpha.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anydigital/11ty-bricks",
3
- "version": "1.0.0-alpha.11",
3
+ "version": "1.0.0-alpha.12",
4
4
  "description": "A collection of helpful utilities and filters for Eleventy (11ty)",
5
5
  "type": "module",
6
6
  "main": "./src/index.js",
@@ -47,7 +47,7 @@ export default function(eleventyConfig) {
47
47
 
48
48
  /* Build */
49
49
  eleventyConfig.addPassthroughCopy({
50
- "_public": ".",
50
+ "src/_public": ".",
51
51
  ...(inputDir !== "src" && { [`${inputDir}/_public`]: "." })
52
52
  }, { expand: true }); // This follows/resolves symbolic links
53
53