vscode ignore tmp build directory
This commit is contained in:
3
.vscode/settings.json
vendored
3
.vscode/settings.json
vendored
@@ -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"
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user