Skip to content

Commit

Permalink
Chores
Browse files Browse the repository at this point in the history
Signed-off-by: Sora Morimoto <sora@morimoto.io>
  • Loading branch information
smorimoto committed Dec 7, 2024
1 parent 16641d9 commit ed158b5
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 25 deletions.
6 changes: 1 addition & 5 deletions .eleventy.js
Original file line number Diff line number Diff line change
Expand Up @@ -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" },
};
};
10 changes: 0 additions & 10 deletions .eleventyignore

This file was deleted.

8 changes: 3 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
_site
node_modules
.bundle
vendor
.cache
/_site/
/.cache/
/node_modules/
6 changes: 3 additions & 3 deletions .stylelintignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
_site/
.cache/
assets/css/
/_site/
/.cache/
/assets/css/
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ed158b5

Please sign in to comment.