Compare commits
3 commits
8ecb639a68
...
cfbc244381
| Author | SHA1 | Date | |
|---|---|---|---|
| cfbc244381 | |||
| 69cdeeb2bf | |||
| 3c3cf239d0 |
4 changed files with 2640 additions and 2 deletions
24
.gitignore
vendored
Normal file
24
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,24 @@
|
||||||
|
# Generated files
|
||||||
|
package/generated*
|
||||||
|
|
||||||
|
# Ignore installed npm modules
|
||||||
|
node_modules/
|
||||||
|
|
||||||
|
# Ignore build tool output, e.g. code coverage
|
||||||
|
.nyc_output/
|
||||||
|
coverage/
|
||||||
|
docs/_data/coverage.json
|
||||||
|
|
||||||
|
# Ignore API documentation
|
||||||
|
api-docs/
|
||||||
|
|
||||||
|
# Ignore folders from source code editors
|
||||||
|
.vscode
|
||||||
|
.idea
|
||||||
|
|
||||||
|
# Ignore eleventy output when doing manual tests
|
||||||
|
_site/
|
||||||
|
|
||||||
|
# Ignore test files
|
||||||
|
.cache
|
||||||
|
test/stubs-layout-cache/_includes/*.js
|
||||||
2598
package-lock.json
generated
Normal file
2598
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load diff
10
package.json
10
package.json
|
|
@ -4,10 +4,16 @@
|
||||||
"description": "my website!!",
|
"description": "my website!!",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "echo \"Error: no test specified\" && exit 1"
|
"watch:eleventy": "npx @11ty/eleventy --watch",
|
||||||
|
"watch:sass": "npx sass sass:_site/css --watch",
|
||||||
|
"start": "npm run watch:eleventy & npm run watch:sass"
|
||||||
},
|
},
|
||||||
"keywords": [],
|
"keywords": [],
|
||||||
"author": "yuki",
|
"author": "yuki",
|
||||||
"license": "WTFPL",
|
"license": "WTFPL",
|
||||||
"type": "commonjs"
|
"type": "commonjs",
|
||||||
|
"dependencies": {
|
||||||
|
"@11ty/eleventy": "^3.0.0",
|
||||||
|
"sass": "^1.86.0"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
10
yuki.k4w411.net.code-workspace
Normal file
10
yuki.k4w411.net.code-workspace
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
{
|
||||||
|
"folders": [
|
||||||
|
{
|
||||||
|
"path": "."
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"settings": {
|
||||||
|
"liveServer.settings.root": "/_site/"
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Add table
Reference in a new issue