From 60675b864c7653ad4aebb53d3664d498493cfdd2 Mon Sep 17 00:00:00 2001 From: Kazhnuz Date: Sat, 29 Apr 2023 20:46:17 +0200 Subject: [PATCH] feat: adapt gitignore to eleventy --- .gitignore | 34 ++++++++++++++++++++++------------ 1 file changed, 22 insertions(+), 12 deletions(-) diff --git a/.gitignore b/.gitignore index 0299c7e..a8fe7ae 100644 --- a/.gitignore +++ b/.gitignore @@ -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 \ No newline at end of file