summaryrefslogtreecommitdiff
path: root/cli/dts/lib.deno.ns.d.ts
AgeCommit message (Collapse)Author
2020-10-20feat: stabilize Deno.fsync and Deno.fdatasync (#8038)Casper Beyer
2020-10-20fix(cli): use rid getter for stdio (#8014)Casper Beyer
This changes the rid of Deno.stdin, Deno.stdout, Deno.stderr from a mutable property into a getter to match the rid semantics of Deno.File.
2020-10-19docs: readTextFile / readTextFileSync throw when reading directory (#7999)vwkd
2020-10-14fix typos (#7964)vwkd
2020-10-11fix(cli/console): only inspect getters with option (#7830)Casper Beyer
2020-09-30feat(cli/console): Add Deno.InspectOptions::colors (#7742)Nayeem Rahman
Ref: https://github.com/denoland/deno/pull/7516#pullrequestreview-489567120
2020-09-08feat(console): print proxy details (#7139)uki00a
2020-09-04docs: fix anchor link (#7346)迷渡
2020-08-31fix(doc): fix some typos in cli docs (#7292)Michael Kurze
2020-08-21fix(docs): remove Deno.dir (#7144)迷渡
2020-08-12feat: Support file URLs in Deno.run for executable (#6994)Nayeem Rahman
2020-08-10feat: Stabilize Deno.mainModule (#6993)Nayeem Rahman
2020-08-04docs: Removed unnecessary `await` (#6951)josephrocca
2020-07-22Reduce size of TypeScript Compiler snapshot (#6809)Ryan Dahl
This PR is intentionally ugly. It duplicates all of the code in cli/js2/ into cli/tsc/ ... because it's very important that we all understand that this code is unnecessarily duplicated in our binary. I hope this ugliness provides the motivation to clean it up. The typescript git submodule is removed, because it's a very large repo and contains all sorts of stuff we don't need. Instead the necessary files are copied directly into the deno repo. Hence +200k lines. COMPILER_SNAPSHOT.bin size ``` master 3448139 this branch 3320972 ``` Fixes #6812