Compare commits

...

3 commits

Author SHA1 Message Date
cfbc244381
add 11ty watch scripts 2025-03-27 04:41:36 -03:00
69cdeeb2bf
add .gitignore 2025-03-27 04:08:59 -03:00
3c3cf239d0
add vscode workspace 2025-03-27 02:58:08 -03:00
4 changed files with 2640 additions and 2 deletions

24
.gitignore vendored Normal file
View 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

File diff suppressed because it is too large Load diff

View file

@ -4,10 +4,16 @@
"description": "my website!!",
"main": "index.js",
"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": [],
"author": "yuki",
"license": "WTFPL",
"type": "commonjs"
"type": "commonjs",
"dependencies": {
"@11ty/eleventy": "^3.0.0",
"sass": "^1.86.0"
}
}

View file

@ -0,0 +1,10 @@
{
"folders": [
{
"path": "."
}
],
"settings": {
"liveServer.settings.root": "/_site/"
}
}