summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-02-15Add execPath function (#1743)Dmitry Sharshakov
2019-02-15Syntax highlighting on the website paegs (#1780)满远荣
2019-02-15Module dep pretty printing in --infoGreg Altman
2019-02-15Remove unnecessary tests/021_info_flag_setup.testRyan Dahl
2019-02-15remove unnecessary build opt (#1783)Yoshiya Hinosawa
2019-02-15Fix behavior for extensionless files with .mime file (#1779)Kevin (Kun) "Kassimo" Qian
2019-02-15feat: env option in run api (#1773)Yoshiya Hinosawa
2019-02-14Use prebuilt hyperfine (#1755)Ryan Dahl
2019-02-13Turn on v8_postmortem_support (#1758)Ryan Dahl
2019-02-13Update contribution guidelines (#1771)Kitson Kelly
To make it clearer how people should indicate that are contributing to Deno.
2019-02-13Upgrade V8 to 7.4.158 (#1767)Ryan Dahl
This is to have access to this fix: https://bugs.chromium.org/p/v8/issues/detail?id=8838 necessary for v8_postmortem_support.
2019-02-13Use 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-13Cleanup Deno namespace (#1765)Kitson Kelly
2019-02-12More web design work (#1759)Ryan Dahl
2019-02-12Drop assert!() from untrack_task() (#1757)Kevin (Kun) "Kassimo" Qian
2019-02-12Decouple ts_library_builder from std/testing (#1749)Ryan Dahl
2019-02-12Include deno version in source_code_hash (#1751)Ryan Dahl
Fixes #472
2019-02-12Revert "Rewrite tools/format.py in deno (#1528)" (#1752)Ryan Dahl
tools/format.ts is making CI flaky and it's difficult to run right now. Reverting to tools/format.py This reverts commit f19622e7681b7753788137706e535f72c3ebb38e.
2019-02-12third_party: upgrade rust cratesBert Belder
2019-02-12Add Deno global namespace (#1748)Kitson Kelly
Resolves #1705 This PR adds the Deno APIs as a global namespace named `Deno`. For backwards compatibility, the ability to `import * from "deno"` is preserved. I have tried to convert every test and internal code the references the module to use the namespace instead, but because I didn't break compatibility I am not sure. On the REPL, `deno` no longer exists, replaced only with `Deno` to align with the regular runtime. The runtime type library includes both the namespace and module. This means it duplicates the whole type information. When we remove the functionality from the runtime, it will be a one line change to the library generator to remove the module definition from the type library. I marked a `TODO` in a couple places where to remove the `"deno"` module, but there are additional places I know I didn't mark.
2019-02-11Fix REPL formatting (#1744)Kevin (Kun) "Kassimo" Qian
2019-02-11web design (#1728)Ryan Dahl
2019-02-11REPL multiline support with recoverable errors (#1731)Kevin (Kun) "Kassimo" Qian
2019-02-11fix: improve formatting (#1732)Yoshiya Hinosawa
2019-02-10Rationalise startup for compiler/main (#1737)Kitson Kelly
2019-02-10Respect NO_COLOR in TypeScript output (#1736)Bartek Iwańczuk
2019-02-10Set globals on compiler startup (#1735)Bartek Iwańczuk
2019-02-09Support scoped variables, unblock REPL async op, and REPL error colors (#1721)Kevin (Kun) "Kassimo" Qian
2019-02-09Add read permission for format.ts (#1726)Yoshiya Hinosawa
2019-02-09Add --allow-read test codeJ2P
2019-02-09Fix read permission messageJ2P
2019-02-08v0.2.11Ryan Dahl
- Add deps to --info output (#1720) - Add --allow-read (#1689) - Add deno.isTTY() (#1622) - Add emojis to permission prompts (#1684) - Add basic WebAssembly support (#1677) - Add `NO_COLOR` support https://no-color.org/ (#1716) - Add color exceptions (#1698) - Fix: do not load cache files when recompile flag is set (#1695) - Upgrade V8 to 7.4.98 (#1640)
2019-02-08Shared buffer fixes (#1644)Bert Belder
* makes `libdeno.shared` a `SharedArrayBuffer` instead of a regular `ArrayBuffer`. * fixes `libdeno.shared` becoming undefined after accessing it once.
2019-02-08Make rustfmt format macro bodies alsoBert Belder
This makes it possible to use cfg_if! conveniently.
2019-02-08Move .rustfmt.toml to the repository rootBert Belder
This allows rustfmt to automatically pick it up. It's right there with similar files such as .prettierrc.
2019-02-08Adds deno.noColor (#1716)Ryan Dahl
2019-02-08Use std/prettier in deno //tools/format.ts (#1708)Yoshiya Hinosawa
2019-02-08Add deps to --info output. (#1720)Ryan Dahl
Move module stuff into its own file.
2019-02-08Add --allow-read (#1689)Dmitry Sharshakov
Co-authored-by: Greg Altman <g.s.altman@gmail.com>
2019-02-08fix format command in contribution guide (#1712)bokuweb
2019-02-08fix clippy warnings (#1711)bokuweb
2019-02-07Color exceptions (#1698)Ryan Dahl
2019-02-07third_party: add the 'regex' crateBert Belder
2019-02-07travis: cache buildtools dir (#1703)Ryan Dahl
2019-02-07Add statement about browser compatibility to docs. (#1623)Ryan Dahl
2019-02-07Add emojis to permission prompts (#1684)Dmitry Sharshakov
2019-02-07Make integration tests standalone (#1671)Dmitry Sharshakov
Co-authored-by: Sergey Golovin <golovim@gmail.com>
2019-02-07editorconfig: Don't insert final newline in .out files (#1686)Dmitry Sharshakov
2019-02-06Upgrade V8 to 7.4.98 (kKeep fix) (#1640)Ryan Dahl
* Upgrade V8 to 7.4.98 (kKeep fix) https://github.com/denoland/deno/issues/814 https://bugs.chromium.org/p/v8/issues/detail?id=8761 * fix tests
2019-02-06fix: do not load cache files when recompile flag is set (#1695)jingweicai