enable parcel file watcher, expand parcel ignore patterns, replace fs watcher for git branches with parcel (#4805)

This commit is contained in:
Aiden Cline
2025-11-26 15:33:43 -08:00
committed by GitHub
parent 3ff0eb3065
commit 99d7ff47c4
5 changed files with 77 additions and 62 deletions

View File

@@ -6,6 +6,7 @@ export namespace FileIgnore {
"bower_components",
".pnpm-store",
"vendor",
".npm",
"dist",
"build",
"out",
@@ -22,12 +23,21 @@ export namespace FileIgnore {
".output",
"desktop",
".sst",
".cache",
".webkit-cache",
"__pycache__",
".pytest_cache",
"mypy_cache",
".history",
".gradle",
])
const FILES = [
"**/*.swp",
"**/*.swo",
"**/*.pyc",
// OS
"**/.DS_Store",
"**/Thumbs.db",