Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-03-02 | Cleanup comments and internal variables (#4205) | dubiousjim | |
2020-03-01 | feat(std/node): add os.tmpdir() implementation (#4213) | ecyrbe | |
2020-02-28 | Clean up lib.deno.ns.d.ts JSDoc (#4170) | Kitson Kelly | |
2020-02-27 | feat: Support types compiler option in compiler APIs (#4155) | Kitson Kelly | |
Handles `types` in the compiler APIs to make it easier to supply external type libraries. | |||
2020-02-26 | tty: Deno.setRaw(rid, mode) to turn on/off raw mode (#3958) | Kevin (Kun) "Kassimo" Qian | |
2020-02-24 | rename Deno.Err -> Deno.errors (#4093) | Bartek Iwańczuk | |
2020-02-24 | feat: Add Deno.formatDiagnostics (#4032) | Kitson Kelly | |
2020-02-24 | Add missing node os.release() implementation (#4065) | ecyrbe | |
2020-02-22 | feat(std/node): add os.loadavg() (#4075) | ecyrbe | |
2020-02-21 | feat: Deno.fsEvents() (#3452) | Bartek Iwańczuk | |
2020-02-21 | feat: support UDP sockets (#3946) | hazæ41 | |
2020-02-21 | refactor: remove unneeded ErrorKinds (#3936) | Bartek Iwańczuk | |
2020-02-19 | Support loading additional TS lib files (#3863) | Kitson Kelly | |
Fixes #3726 This PR provides support for referencing other lib files (like lib.dom.d.ts that are not used by default in Deno. | |||
2020-02-18 | feat: Deno.makeTempFile (#4024) | Kevin (Kun) "Kassimo" Qian | |
2020-02-11 | refactor: rewrite deno test, add Deno.test() (#3865) | Bartek Iwańczuk | |
* rewrite test runner in Rust * migrate "test" and "runTests" functions from std to "Deno" namespace * use "Deno.test()" to run internal JS unit tests * remove std downloads for Deno subcommands | |||
2020-02-07 | Improve support for diagnostics from runtime compiler APIs (#3911) | Kitson Kelly | |
- Exports diagnostic items from `diagnostics.ts` which are missing at runtime. - Returns an array of diagnostics, instead of an object with a property of `items`. This is because of the way Rust deals with certain structures, and shouldn't be exposed in the APIs. | |||
2020-02-07 | feat: add std/signal/mod.ts (#3913) | Yoshiya Hinosawa | |
2020-02-05 | Fix: jsDoc for Deno.dir() (#3888) | Chris Knight | |
2020-01-29 | workers: proper TS libs, more spec-compliant APIs (#3812) | Bartek Iwańczuk | |
* split lib.deno_main.d.ts into: - lib.deno.shared_globals.d.ts - lib.deno.window.d.ts - lib.deno.worker.d.ts * remove no longer used libs: - lib.deno_main.d.ts - lib.deno_worker.d.ts * change module loading to use proper TS library for compilation * align to Worker API spec: - Worker.terminate() - self.close() - self.name |