Initial start for WASM

This commit is contained in:
Gregory Schier
2023-02-18 20:17:01 -08:00
parent ec6da90510
commit de8a36d04b
10 changed files with 956 additions and 13 deletions

View File

@@ -23,7 +23,7 @@ pub async fn run_plugin(file_path: &str) -> Result<(), AnyError> {
});
runtime
.execute_script("<runtime>", include_str!("runtime.ts"))
.execute_script("<runtime>", include_str!("runtime.js"))
.unwrap();
let main_module = deno_core::resolve_path(file_path)?;