Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-03-08 | Add basic Arm64 build to CI (#1887) | andy finch | |
2019-03-07 | Remove 'deno' builtin module (#1895) | Kitson Kelly | |
2019-03-06 | Replace deno.land/x/std with deno.land/std (#1890) | Andy Hayden | |
2019-03-05 | fix snapshots in gn build (#1886) | andy finch | |
Bug introduced in 75fe80d5a4992ddad89160c2e0113a1af8d3d24a | |||
2019-03-04 | `use-snapshots` build option for cross compile support. (#1852) | andy finch | |
2019-03-04 | Allow inspection and revocation of permissions (#1875) | Simon Menke | |
2019-03-03 | Add write permissions requirement to `op_fetch_module_meta_data`. (#1874) | andy finch | |
2019-03-01 | Permissions refactor (#1864) | andy finch | |
Refactored permissions to be assignable on a per-isolate basis, and added a fix for #1858 to op_fetch_module_meta_data. | |||
2019-02-28 | Use deno_core::JSError in deno (#1855) | Ryan Dahl | |
src/js_errors.rs takes care of source maps and color while core/js_errors.rs is just the basic struct. | |||
2019-02-27 | Add NO_COLOR to CLI usage (#1843) | Ryan Dahl | |
2019-02-26 | deno_core (#1827) | Ryan Dahl | |
A new low-level crate with focus on speed. This doesn't yet hook into the existing code base. | |||
2019-02-26 | Add import.meta.main (#1835) | Bartek Iwańczuk | |
2019-02-26 | Updated some type assertions to work with other libc implementations. (#1837) | andy finch | |
2019-02-18 | build: fix deps for deno_runtime_declaration | Ryan Dahl | |
2019-02-18 | Add window.location | Ryan Dahl | |
2019-02-18 | Match TypeScript & JavaScript error colors (#1793) | Bartek Iwańczuk | |
2019-02-18 | Add `seek` and implement `Seeker` on `File` (#1797) | Kevin (Kun) "Kassimo" Qian | |
This patch contains a special hack that circumvents the current tokio seek problem. tokio `seek` is implemented to take ownership of the original File and emit a new one in its future, which conflicts with the design of ResourceTable. To avoid the problem, the current hack makes the FsFile resource an Option which we could `take` the value ownership out of it. We then convert the tokio File into a Rust std File, perform the seek, and then put it back into the resource. This might be able to drop this hack after https://github.com/tokio-rs/tokio/pull/785 lands. | |||
2019-02-18 | Rationalise compiler ops (#1740) | Kitson Kelly | |
2019-02-15 | Add execPath function (#1743) | Dmitry Sharshakov | |
2019-02-15 | Module dep pretty printing in --info | Greg Altman | |
2019-02-15 | feat: env option in run api (#1773) | Yoshiya Hinosawa | |
2019-02-13 | Use proper directory for cache files (#1763) | Philipp A | |
Operating systems have defined directories for cache files. That allows them to do smart things such as leaving them out when doing a backup, or deleting them when disk space gets low. Also a %home%\.deno folder on windows made no sense whatsoever. Fixes #481 | |||
2019-02-12 | Drop assert!() from untrack_task() (#1757) | Kevin (Kun) "Kassimo" Qian | |
2019-02-12 | Include deno version in source_code_hash (#1751) | Ryan Dahl | |
Fixes #472 | |||
2019-02-11 | REPL multiline support with recoverable errors (#1731) | Kevin (Kun) "Kassimo" Qian | |
2019-02-09 | Support scoped variables, unblock REPL async op, and REPL error colors (#1721) | Kevin (Kun) "Kassimo" Qian | |
2019-02-09 | Fix read permission message | J2P | |
2019-02-08 | Adds deno.noColor (#1716) | Ryan Dahl | |
2019-02-08 | Add deps to --info output. (#1720) | Ryan Dahl | |
Move module stuff into its own file. | |||
2019-02-08 | Add --allow-read (#1689) | Dmitry Sharshakov | |
Co-authored-by: Greg Altman <g.s.altman@gmail.com> | |||
2019-02-08 | fix clippy warnings (#1711) | bokuweb | |
2019-02-07 | Color exceptions (#1698) | Ryan Dahl | |
2019-02-07 | Add emojis to permission prompts (#1684) | Dmitry Sharshakov | |
2019-02-06 | fix: do not load cache files when recompile flag is set (#1695) | jingweicai | |
2019-02-02 | Add isTTY function (#1622) | Dmitry Sharshakov | |
2019-02-02 | Compiler cleanups and minor improvements (#1656) | Kitson Kelly | |
2019-02-02 | Support --fmt | Ryan Dahl | |
2019-02-02 | Avoid --info crash on missing filename (#1660) | Kevin (Kun) "Kassimo" Qian | |
2019-02-02 | Better error message for bad filename CLI argument. | Ryan Dahl | |
2019-02-02 | Clean up return value of deno_execute | Ryan Dahl | |
and deno_respond | |||
2019-02-02 | Clarify writeFile options and avoid unexpected perm modification (#1643) | Kevin (Kun) "Kassimo" Qian | |
2019-02-02 | Add --info flag to display file info (compiled code/source map) (#1647) | Kevin (Kun) "Kassimo" Qian | |
2019-02-02 | Add performance.now (#1633) | Dmitry Sharshakov | |
2019-02-01 | src: simplify rust code | Bert Belder | |
2019-01-30 | nit: add missing dot when printing help | Amen | |
2019-01-30 | Refactor libdeno ES module interface. (#1624) | Ryan Dahl | |
Allows for future asynchronous module loading. Add support for import.meta.url Fixes #1496 | |||
2019-01-29 | Minor code cleanups (#1613) | JaePil Jung | |
2019-01-28 | Split out compiler snapshot (#1566) | Kitson Kelly | |
Speeds up startup time, reduces runtime heap size. | |||
2019-01-26 | timers: use int instead of double for timeout type (#1469) | bokuweb | |
2019-01-24 | Minor code cleanups (#1570) | JaePil Jung | |