1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-22 15:24:46 -05:00

fix(watch): watch importmap file for changes (#7580)

This commit is contained in:
bartOssh 2020-09-23 13:56:16 +02:00 committed by GitHub
parent 8a6a390457
commit 29dd62b08c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -480,13 +480,21 @@ async fn run_with_watch(flags: Flags, script: String) -> Result<(), AnyError> {
let module_graph = module_graph_loader.get_graph();
// Find all local files in graph
let paths_to_watch: Vec<PathBuf> = module_graph
let mut paths_to_watch: Vec<PathBuf> = module_graph
.values()
.map(|f| Url::parse(&f.url).unwrap())
.filter(|url| url.scheme() == "file")
.map(|url| url.to_file_path().unwrap())
.collect();
if let Some(import_map) = global_state.flags.import_map_path.clone() {
paths_to_watch.push(
Url::parse(&format!("file://{}", &import_map))?
.to_file_path()
.unwrap(),
);
}
// FIXME(bartlomieju): new file watcher is created on after each restart
file_watcher::watch_func(&paths_to_watch, move || {
// FIXME(bartlomieju): GlobalState must be created on each restart - otherwise file fetcher