feat: adapt gitignore to eleventy
This commit is contained in:
parent
e84ad1e65b
commit
60675b864c
1 changed files with 22 additions and 12 deletions
34
.gitignore
vendored
34
.gitignore
vendored
|
@ -1,15 +1,25 @@
|
|||
# ---> Hugo
|
||||
# Generated files by hugo
|
||||
/public/
|
||||
/resources/_gen/
|
||||
/assets/jsconfig.json
|
||||
hugo_stats.json
|
||||
# Generated files
|
||||
package/generated*
|
||||
|
||||
# Executable may be added to repository
|
||||
hugo.exe
|
||||
hugo.darwin
|
||||
hugo.linux
|
||||
# Ignore installed npm modules
|
||||
node_modules/
|
||||
|
||||
# Temporary lock file while building
|
||||
/.hugo_build.lock
|
||||
# Ignore build tool output, e.g. code coverage
|
||||
.nyc_output/
|
||||
coverage/
|
||||
|
||||
# Ignore API documentation
|
||||
api-docs/
|
||||
|
||||
# Ignore folders from source code editors
|
||||
.vscode
|
||||
.idea
|
||||
|
||||
# Ignore eleventy output when doing manual tests
|
||||
_site/
|
||||
|
||||
package-lock.json
|
||||
|
||||
# Ignore test files
|
||||
.cache
|
||||
test/stubs-layout-cache/_includes/*.js
|
Reference in a new issue