diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2020-07-20 19:49:57 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-20 19:49:57 -0400 |
commit | 2460689b1a9582ef6ab8c5fa429e281c88bc14d1 (patch) | |
tree | c6e8f7b8fda45004c0321eb2ac88a5bfb5905483 /cli/ops/compiler.rs | |
parent | 903d28f872b90a800c64339dea058806cde0be67 (diff) |
Remove deno_typescript (#6813)
Diffstat (limited to 'cli/ops/compiler.rs')
-rw-r--r-- | cli/ops/compiler.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/ops/compiler.rs b/cli/ops/compiler.rs index 2e5842c0f..9e56ef436 100644 --- a/cli/ops/compiler.rs +++ b/cli/ops/compiler.rs @@ -8,6 +8,6 @@ pub fn init(i: &mut CoreIsolate, _s: &State) { // TODO(bartlomieju): is this op even required? i.register_op( "op_fetch_asset", - deno_typescript::op_fetch_asset(custom_assets), + crate::op_fetch_asset::op_fetch_asset(custom_assets), ); } |