-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
Partial reload #3109
Merged
Merged
Partial reload #3109
Changes from 1 commit
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
adb4b4f
reload flag matches allow-read flag
mhvsa 776f1b3
implement reload with argument flag
mhvsa 150c769
fix check_cache_blacklist fn header
mhvsa 5487adf
added query string and fragments support & resolve_url now panics
mhvsa 6c28ac9
updated --reload help
mhvsa 6a9bc63
fmt
mhvsa 08e40ae
resolved merging conflicts
mhvsa 1e73e4f
fix long_help & superficial code
mhvsa fc72a66
fix long_help & superficial code
mhvsa cb55b85
Merge branch 'partial_reload' of http://github.com/mhvsa/deno into pa…
mhvsa 360714c
Merge branch 'master' into partial_reload
ry 83ccb74
cleanup
ry 5839b11
Merge branch 'master' into partial_reload
mhvsa 39858bf
updated website manual with --reload=<CACHE_BLACKLIST> info
mhvsa 3358bb6
format website manual
mhvsa 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
Next
Next commit
reload flag matches allow-read flag
- Loading branch information
commit adb4b4f08a237281a5eed927bdb8cf93e9971c2e
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 |
---|---|---|
|
@@ -172,6 +172,10 @@ To get help on the another subcommands (run in this case): | |
).arg( | ||
Arg::with_name("reload") | ||
.short("r") | ||
.min_values(0) | ||
.takes_value(true) | ||
.use_delimiter(true) | ||
.require_equals(true) | ||
.long("reload") | ||
.help("Reload source code cache (recompile TypeScript)") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please add note that blacklist is supported and also add |
||
.global(true), | ||
|
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.
Are those required? Would be nice to do
--reload https://deno.land/std/fs/utils.ts https://deno.land/std/fmt/colors.ts