diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-02-21 13:21:51 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-21 13:21:51 -0500 |
commit | bd640bc7e6a946dec4477afc64d8083e372660f6 (patch) | |
tree | cb08b999ad594dc0796fa1fefc588c0b86083066 /cli/worker.rs | |
parent | 754b8c65ad5adda2961c667a6b64ab59c130111d (diff) |
feat: Deno.fsEvents() (#3452)
Diffstat (limited to 'cli/worker.rs')
-rw-r--r-- | cli/worker.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/worker.rs b/cli/worker.rs index bfcc1afdc..a4a35dfaa 100644 --- a/cli/worker.rs +++ b/cli/worker.rs @@ -206,6 +206,7 @@ impl MainWorker { ops::fetch::init(isolate, &state); ops::files::init(isolate, &state); ops::fs::init(isolate, &state); + ops::fs_events::init(isolate, &state); ops::io::init(isolate, &state); ops::plugins::init(isolate, &state, op_registry); ops::net::init(isolate, &state); |