diff options
Diffstat (limited to 'op_crates/web/lib.rs')
-rw-r--r-- | op_crates/web/lib.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/op_crates/web/lib.rs b/op_crates/web/lib.rs index 8ee944d74..a609dc4cd 100644 --- a/op_crates/web/lib.rs +++ b/op_crates/web/lib.rs @@ -7,10 +7,18 @@ use std::path::PathBuf; pub fn init(isolate: &mut JsRuntime) { let files = vec![ ( + "deno:op_crates/web/00_infra.js", + include_str!("00_infra.js"), + ), + ( "deno:op_crates/web/01_dom_exception.js", include_str!("01_dom_exception.js"), ), ( + "deno:op_crates/web/01_mimesniff.js", + include_str!("01_mimesniff.js"), + ), + ( "deno:op_crates/web/02_event.js", include_str!("02_event.js"), ), |