From 36c84e50b10fc873331063cb6d3f7f8503ae376d Mon Sep 17 00:00:00 2001 From: Anthony Correa Date: Fri, 21 Feb 2025 08:08:37 -0600 Subject: [PATCH] vscode ignore tmp build directory --- .vscode/settings.json | 3 ++- deploy.sh | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 50bb5fe..8f17cf5 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -2,7 +2,8 @@ "files.exclude": { "dist/": false, "**/.obsidian/": true, - "node_modules":true + "node_modules":true, + ".tmp_eleventy_build":true }, "files.associations": { "*.md": "markdown-eleventy" diff --git a/deploy.sh b/deploy.sh index 7d46669..e91e5d5 100755 --- a/deploy.sh +++ b/deploy.sh @@ -4,7 +4,7 @@ set -e # Configuration (environment variables) -BUILD_DIR=".tmp_build" # Temporary directory for the build +BUILD_DIR=".tmp_eleventy_build" # Temporary directory for the build PRODUCTION_SERVER="${PRODUCTION_SERVER:-}" # Ensure this is set in the environment PRODUCTION_PATH="${PRODUCTION_PATH:-}" # Ensure this is set in the environment PATH_PREFIX="${PATH_PREFIX:-}" # Ensure this is set in the environment