diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2021-01-01 08:43:54 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-01 08:43:54 +1100 |
commit | 012f99bd9a0463813653bf8438e09b3247395984 (patch) | |
tree | da00dc71787f564bf1cd8308ebc3fad621fb7771 /cli/diagnostics.rs | |
parent | 5f4e1767fea326d507395eafee25ab4ecc4b67b9 (diff) |
refactor(cli): runtime compiler APIs consolidated to Deno.emit() (#8799)
Closes: #4752
Diffstat (limited to 'cli/diagnostics.rs')
-rw-r--r-- | cli/diagnostics.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/cli/diagnostics.rs b/cli/diagnostics.rs index 419d89a97..773ee0b36 100644 --- a/cli/diagnostics.rs +++ b/cli/diagnostics.rs @@ -44,11 +44,10 @@ const UNSTABLE_DENO_PROPS: &[&str] = &[ "UnixListenOptions", "WritePermissionDescriptor", "applySourceMap", - "bundle", - "compile", "connect", "consoleSize", "createHttpClient", + "emit", "formatDiagnostics", "futime", "futimeSync", @@ -77,7 +76,6 @@ const UNSTABLE_DENO_PROPS: &[&str] = &[ "symlinkSync", "systemMemoryInfo", "systemCpuInfo", - "transpileOnly", "umask", "utime", "utimeSync", |