Compare commits

...

3 commits

Author SHA1 Message Date
80ed4a20b5
remove gen.sh in favor of using package.json scripts
All checks were successful
/ build (push) Successful in 5m14s
2025-10-26 22:44:16 -05:00
103d0b6c20
move custard.html 2025-10-26 22:43:36 -05:00
24d50614f4
why was this not already here before 2025-10-26 22:43:21 -05:00
5 changed files with 5 additions and 5 deletions

View file

@ -1 +1,2 @@
README.md
sneexy/notebook/

View file

@ -4,8 +4,8 @@ import eleventyNavigationPlugin from "@11ty/eleventy-navigation";
import syntaxHighlight from "@11ty/eleventy-plugin-syntaxhighlight";
export default function(eleventyConfig) {
eleventyConfig.addPassthroughCopy({ "_includes/other/custard.html": "custard.html" });
eleventyConfig.addPassthroughCopy({ "sneexy/notebook/": "~sneexy/notebook/" }); // notebook page generated by quartz seperately - see https://forged.synth.download/sneexy/notebook
eleventyConfig.addPassthroughCopy("custard.html");
eleventyConfig.addPlugin(eleventyNavigationPlugin);
eleventyConfig.addPlugin(syntaxHighlight);
eleventyConfig.addPassthroughCopy("assets/");

4
gen.sh
View file

@ -1,4 +0,0 @@
#!/bin/bash
rm -rf ./_site
npx @11ty/eleventy
npx -y pagefind --site _site

View file

@ -4,6 +4,9 @@
"description": "synth.download's website, powered by eleventy.",
"main": "index.js",
"scripts": {
"build-clean": "rm -rf ./_site && npx @11ty/eleventy && npx -y pagefind --site _site",
"build": "npx @11ty/eleventy && npx -y pagefind --site _site",
"serve": "npx @11ty/eleventy --serve",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {