Skip to content

Commit ed158b5

Browse files
committed
Chores
Signed-off-by: Sora Morimoto <[email protected]>
1 parent 16641d9 commit ed158b5

File tree

5 files changed

+9
-25
lines changed

5 files changed

+9
-25
lines changed

.eleventy.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,6 @@ export default (eleventyConfig) => {
22
eleventyConfig.addPassthroughCopy("assets");
33
eleventyConfig.addPassthroughCopy("favicon*");
44
return {
5-
dir: {
6-
input: "./", // Equivalent to Jekyll's source property
7-
output: "./_site", // Equivalent to Jekyll's destination property
8-
layouts: "./_layouts",
9-
},
5+
dir: { input: "./", output: "./_site", layouts: "./_layouts" },
106
};
117
};

.eleventyignore

Lines changed: 0 additions & 10 deletions
This file was deleted.

.gitignore

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
_site
2-
node_modules
3-
.bundle
4-
vendor
5-
.cache
1+
/_site/
2+
/.cache/
3+
/node_modules/

.stylelintignore

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
_site/
2-
.cache/
3-
assets/css/
1+
/_site/
2+
/.cache/
3+
/assets/css/

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ This website is intended as a content website. While it is a landing page for th
3939
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).
4040

4141
```sh
42-
npm ci # install dependencies from package-lock.json
43-
npm start # start 11ty server in watch mode
42+
npm ci # install dependencies from package-lock.json
43+
npm start # start 11ty server in watch mode
4444
```
4545

4646
### Data files

0 commit comments

Comments
 (0)