diff options
author | Luca Casonato <hello@lcas.dev> | 2021-08-31 11:25:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-31 11:25:15 +0200 |
commit | fcd0992dba9cce0539cc60cd11867f50c0cf5efb (patch) | |
tree | e15cb497fce7fa678ab3fce92907dae562faa3b2 /cli/main.rs | |
parent | ca75752e5a9499a0a997809f02b18c2ba1ecd58d (diff) |
fix: move unstable declarations to deno.unstable (#11876)
Diffstat (limited to 'cli/main.rs')
-rw-r--r-- | cli/main.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/cli/main.rs b/cli/main.rs index 8de1f1fc5..beb54cd23 100644 --- a/cli/main.rs +++ b/cli/main.rs @@ -358,8 +358,6 @@ 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") |