-
Notifications
You must be signed in to change notification settings - Fork 259
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(2688): --watch
for changes
#2707
Closed
+297
−18
Closed
Changes from 26 commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
6932843
feat: watch changes in path
beelchester 0abc74b
revert comment
beelchester 9645c38
remove outer task
beelchester a532348
use config_error flag and content event for notify
beelchester 63fe1c2
refact: start_watch_server
beelchester 15c40b9
optimize server in watch mode
beelchester 1879460
remove separate watch task
beelchester 02f0b23
watch for linked files also and add debounce delay
beelchester 1233dea
fix: first server run sometimes fails
beelchester 4b9dd5f
fix: add delay to let server stop
beelchester 75cd209
update command description
beelchester 19f53f0
increase init last_event_time
beelchester a27bbda
fix: build
beelchester fe7c562
fix server and handle relative link paths
beelchester c53458c
fix: lint
beelchester d61e32d
Merge branch 'main' into feat/watch-path
beelchester c1409b3
use arc_config_reader in start
beelchester 15891ba
fix: build
beelchester aa6d9cc
Merge branch 'main' into feat/watch-path
tusharmath 1db8662
prevent logs on restart in watch mode
beelchester 70ad866
fix: errors not showing on first run
beelchester 631420c
Merge branch 'main' into feat/watch-path
beelchester cd40bec
fix: lint
beelchester 354d2b7
drop prevent logs
tusharmath efc9515
Merge branch 'main' into feat/watch-path
beelchester 61f37a7
Merge branch 'main' into feat/watch-path
beelchester d8d89c4
Merge branch 'main' into feat/watch-path
beelchester 34b17b6
Merge branch 'main' into feat/watch-path
beelchester 0007f39
Merge branch 'main' into feat/watch-path
beelchester File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,4 @@ mod gen; | |
mod helpers; | ||
mod init; | ||
pub mod run; | ||
mod start; | ||
pub mod start; |
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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Move the runtime into the server. Let's not create static runtimes this way.