mirror of
https://github.com/skoelle/moonweb-site.git
synced 2026-09-17 17:00:25 +00:00
- Single eleventy.config.js at root with computed pathPrefix per section - Accent colors inlined in base.njk (no per-site theme.css needed) - Hub pages output at root via explicit permalinks - Per-section sitemaps with tag-based collections - .eleventyignore excludes stefankoelle, timecapsule, markdown files - Deleted: 5 per-site configs, merge script - Simplified: package.json (single build/dev commands) - Simplified: GitHub Actions workflow (no matrix, no merge job) - Fixed: parent links for sub-site detail pages
21 lines
942 B
JSON
21 lines
942 B
JSON
{
|
|
"name": "moonweb-site",
|
|
"version": "0.3.0",
|
|
"private": true,
|
|
"description": "Monorepo for hub/infra/smarthome/code/retro/timecapsule (Eleventy, static, deployed to IONOS SFTP)",
|
|
"scripts": {
|
|
"dev": "npx @11ty/eleventy --serve --port=8081",
|
|
"dev:stefankoelle": "npx @11ty/eleventy --config=stefankoelle/eleventy.config.js --serve --port=8086",
|
|
"dev:timecapsule": "cd timecapsule && npx @11ty/eleventy --serve --port=8087",
|
|
"build": "npx @11ty/eleventy",
|
|
"build:stefankoelle": "npx @11ty/eleventy --config=stefankoelle/eleventy.config.js",
|
|
"build:timecapsule": "cd timecapsule && npx @11ty/eleventy && mkdir -p ../../dist/timecapsule && cp -r _site/timecapsule/* ../../dist/timecapsule/",
|
|
"build:moonweb": "npm run build && npm run build:timecapsule",
|
|
"pdf:cv": "bash stefankoelle/pdf/build-pdf.sh",
|
|
"prebuild": "bash prebuild.sh"
|
|
},
|
|
"devDependencies": {
|
|
"@11ty/eleventy": "^3.1.6"
|
|
}
|
|
}
|