diff --git a/.eleventy.js b/.eleventy.js index ab8b0fb..badcd19 100644 --- a/.eleventy.js +++ b/.eleventy.js @@ -2,10 +2,6 @@ export default (eleventyConfig) => { eleventyConfig.addPassthroughCopy("assets"); eleventyConfig.addPassthroughCopy("favicon*"); return { - dir: { - input: "./", // Equivalent to Jekyll's source property - output: "./_site", // Equivalent to Jekyll's destination property - layouts: "./_layouts", - }, + dir: { input: "./", output: "./_site", layouts: "./_layouts" }, }; }; diff --git a/.eleventyignore b/.eleventyignore deleted file mode 100644 index 22b707b..0000000 --- a/.eleventyignore +++ /dev/null @@ -1,10 +0,0 @@ -README.md -screenshot.png -Dockerfile -Makefile -Gemfile -Gemfile.lock -node_modules -package.json -package-lock.json -vendor diff --git a/.gitignore b/.gitignore index b919cad..2d1eee9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,3 @@ -_site -node_modules -.bundle -vendor -.cache +/_site/ +/.cache/ +/node_modules/ diff --git a/.stylelintignore b/.stylelintignore index 99fde5f..0df418d 100644 --- a/.stylelintignore +++ b/.stylelintignore @@ -1,3 +1,3 @@ -_site/ -.cache/ -assets/css/ +/_site/ +/.cache/ +/assets/css/ diff --git a/README.md b/README.md index e811368..702ae65 100644 --- a/README.md +++ b/README.md @@ -39,8 +39,8 @@ This website is intended as a content website. While it is a landing page for th The website is built using [11ty](https://www.11ty.dev/) and requires a relatively up-to-date version of Node.js - preferably the version in [.nvmrc](./.nvmrc). ```sh -npm ci # install dependencies from package-lock.json -npm start # start 11ty server in watch mode +npm ci # install dependencies from package-lock.json +npm start # start 11ty server in watch mode ``` ### Data files