@tuqulore-inc/create-eleventy 4.0.0 → 4.0.2
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/index.mjs +4 -2
- package/package.json +2 -2
- package/templates/default/package.json +1 -1
- /package/templates/default/src/{_data → __data}/nav.json +0 -0
- /package/templates/default/src/{_data → __data}/site.mjs +0 -0
- /package/templates/default/src/{_includes → __includes}/base.mdx +0 -0
- /package/templates/default/src/{_includes → __includes}/partials/footer.mdx +0 -0
- /package/templates/default/src/{_includes → __includes}/partials/header/desktop.hydrate.jsx +0 -0
- /package/templates/default/src/{_includes → __includes}/partials/header/mobile.hydrate.jsx +0 -0
- /package/templates/default/src/{_includes → __includes}/partials/header.mdx +0 -0
- /package/templates/default/src/{_includes → __includes}/partials/ogp.mdx +0 -0
- /package/templates/default/src/{_includes → __includes}/post.mdx +0 -0
package/index.mjs
CHANGED
|
@@ -81,8 +81,10 @@ function copyDir(src, dest) {
|
|
|
81
81
|
const srcPath = path.join(src, entry.name);
|
|
82
82
|
let destName = entry.name;
|
|
83
83
|
|
|
84
|
-
// Rename _prefix to .prefix
|
|
85
|
-
if (destName.startsWith("
|
|
84
|
+
// Rename __prefix to _prefix, _prefix to .prefix
|
|
85
|
+
if (destName.startsWith("__")) {
|
|
86
|
+
destName = destName.slice(1);
|
|
87
|
+
} else if (destName.startsWith("_")) {
|
|
86
88
|
destName = "." + destName.slice(1);
|
|
87
89
|
}
|
|
88
90
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tuqulore-inc/create-eleventy",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.2",
|
|
4
4
|
"description": "Create a new Eleventy project with Preact and TailwindCSS",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"create",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
],
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"eslint": "^9.39.2",
|
|
28
|
-
"@tuqulore-inc/eslint-config": "4.0.
|
|
28
|
+
"@tuqulore-inc/eslint-config": "4.0.2"
|
|
29
29
|
},
|
|
30
30
|
"engines": {
|
|
31
31
|
"node": ">=20"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|