vscode ignore tmp build directory

This commit is contained in:
2025-02-21 08:08:37 -06:00
parent 934e0b7557
commit 36c84e50b1
2 changed files with 3 additions and 2 deletions

View File

@@ -2,7 +2,8 @@
"files.exclude": { "files.exclude": {
"dist/": false, "dist/": false,
"**/.obsidian/": true, "**/.obsidian/": true,
"node_modules":true "node_modules":true,
".tmp_eleventy_build":true
}, },
"files.associations": { "files.associations": {
"*.md": "markdown-eleventy" "*.md": "markdown-eleventy"

View File

@@ -4,7 +4,7 @@
set -e set -e
# Configuration (environment variables) # 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_SERVER="${PRODUCTION_SERVER:-}" # Ensure this is set in the environment
PRODUCTION_PATH="${PRODUCTION_PATH:-}" # 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 PATH_PREFIX="${PATH_PREFIX:-}" # Ensure this is set in the environment