bake
bake copied to clipboard
--interactive mode ignore certain files/folders
Issue
Editing files with vi creates a .swp file which causes bake to restart my app before I save my file.
-
bake run my_app --interactive
-
vi src/main.c
- make an edit without saving
- vi creates a
.swp
file - bake restarts the app <-- I don't want this
Feature Request
I'd like some way to tell bake to ignore certain files/folders/patterns when determining if it should rebuild/restart the app.
Something akin to nodemon's nodemon --ignore PATTERN [--ignore PATTERN2]
.