Closed BlueRedBrackets closed 1 year ago
Describe the problem you are trying to solve. Editing files with vi creates a .swp file which causes bake to restart my app before I save my file.
.swp
bake run my_app --interactive
vi src/main.c
Describe the solution you'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].
nodemon --ignore PATTERN [--ignore PATTERN2]
This is a bake issue, not flecs! Feel free to create this issue here: https://github.com/SanderMertens/bake
Describe the problem you are trying to solve. 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
.swp
fileDescribe the solution you'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]
.