From ed158b5f749e4a85a08588e9131eef703891c12b Mon Sep 17 00:00:00 2001 From: Sora Morimoto Date: Sun, 8 Dec 2024 01:59:52 +0900 Subject: [PATCH] Chores Signed-off-by: Sora Morimoto --- .eleventy.js | 6 +----- .eleventyignore | 10 ---------- .gitignore | 8 +++----- .stylelintignore | 6 +++--- README.md | 4 ++-- 5 files changed, 9 insertions(+), 25 deletions(-) delete mode 100644 .eleventyignore diff --git a/.eleventy.js b/.eleventy.js index ab8b0fb1..badcd199 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 22b707bd..00000000 --- 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 b919cadb..2d1eee9a 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 99fde5ff..0df418de 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 e8113681..702ae650 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