-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This includes handling processes via contexts and fixing memory leaking bugs. Signed-off-by: Vaibhav <[email protected]>
- Loading branch information
Showing
21 changed files
with
1,011 additions
and
820 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
build/ | ||
vendor/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Leaf configuration file. | ||
|
||
# Root directory to watch. | ||
# Defaults to current working directory. | ||
root: . | ||
|
||
# Exclude directories while watching. | ||
# If certain directories are not excluded, it might reach a | ||
# limitation where watcher doesn't start. | ||
exclude: | ||
- DEFAULTS # This includes the default ignored directories | ||
- build/ | ||
- scripts/ | ||
|
||
# Filters to apply on the watch. | ||
# Filters starting with '+' are includent and then with '-' | ||
# are excluded. This is not like exclude, these are still | ||
# being watched yet can be excluded from the execution. | ||
# These can include any regex supported by filepath.Match | ||
# method or even a directory. | ||
filters: | ||
- '+ go.mod' | ||
- '+ go.sum' | ||
- '+ *.go' | ||
- '+ cmd/' | ||
|
||
# Commands to be executed. These are run in the provided order. | ||
exec: | ||
- make build | ||
|
||
# Delay after which commands are executed. | ||
delay: 1s |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.