diff options
author | Luca Casonato <hello@lcas.dev> | 2021-07-12 12:44:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-12 12:44:49 +0200 |
commit | f649960f87a408124b5b0d6f55f3be7f5724a4e7 (patch) | |
tree | 0a303a918828f602623c64c50a912645df55b772 /cli/main.rs | |
parent | 6460eadaa178b3a9d09d04205977e4f659fe8fff (diff) |
refactor: deno_http op crate (#11335)
Diffstat (limited to 'cli/main.rs')
-rw-r--r-- | cli/main.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/main.rs b/cli/main.rs index 93bae0220..77f8b34ba 100644 --- a/cli/main.rs +++ b/cli/main.rs @@ -348,6 +348,7 @@ pub fn get_types(unstable: bool) -> String { if unstable { types.push(crate::tsc::UNSTABLE_NS_LIB); types.push(crate::tsc::DENO_NET_UNSTABLE_LIB); + types.push(crate::tsc::DENO_HTTP_UNSTABLE_LIB); } types.join("\n") |