summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-02-12third_party: upgrade rust cratesBert Belder
2019-02-12Add benching (denoland/deno_std#185)chiefbiiko
Original: https://github.com/denoland/deno_std/commit/0a160c392521f643237cb4890ff64dac6e5e3a6b
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-10Add colors to log module (denoland/deno_std#175)Dmitry Sharshakov
Original: https://github.com/denoland/deno_std/commit/d895c60a51e7cdbf517fee226ffb0274904979f8
2019-02-10Rationalise startup for compiler/main (#1737)Kitson Kelly
2019-02-10feat: multipart, etc.. (denoland/deno_std#180)Yusuke Sakurai
Original: https://github.com/denoland/deno_std/commit/fda9c98d055091fa886fa444ebd1adcd2ecd21bc
2019-02-10 refactor: make acceptWebSocket independent from ServerRequest ↵Yusuke Sakurai
(denoland/deno_std#178) Original: https://github.com/denoland/deno_std/commit/88ddd5677dec9a8281c4d86ba27b0c9047189740
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 NO_COLOR in colors module (denoland/deno_std#182)Bartek Iwańczuk
Original: https://github.com/denoland/deno_std/commit/a81d2ae1f962c3e0c845e63bf06da01e4b7cfcc2
2019-02-09Support scoped variables, unblock REPL async op, and REPL error colors (#1721)Kevin (Kun) "Kassimo" Qian
2019-02-09Bump CI to v0.2.11 (denoland/deno_std#183)Ryan Dahl
Original: https://github.com/denoland/deno_std/commit/1abdc2efc0fbe7a7b0978fed0c37acede58a9700
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-08Clean up tests (denoland/deno_std#176)Dmitry Sharshakov
Original: https://github.com/denoland/deno_std/commit/f2d23f8fcd3970a71d33d6cf6447a06ffcc12864
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-07Add missiong copyright headers (denoland/deno_std#177)Dmitry Sharshakov
Original: https://github.com/denoland/deno_std/commit/54403774955af0bb5618c0ca6e12c57ec7d5fd0a
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
2019-02-06Add log-scale to execution graph (#1694)Kaley Main
2019-02-06Remove excessive anchor links. (#1664)Ryan Dahl
2019-02-06Add missing run permission in test function (#1697)JaePil Jung
2019-02-05Fixed test code (#1688)JaePil Jung
2019-02-05Fix indentation for .py files in .editorconfig (#1672)Dmitry Sharshakov
2019-02-05Add WebAssembly to runtime library (#1677)Kitson Kelly
This also modifies the `ts_library_builder` to support inlining assets. Includes integration tests from @sh7dm
2019-02-04Remove duplicated links in website (#1668)Jimmy Moon
2019-02-04Replace macros to check nullptr (#1674)Masashi Hirano
This replaces CHECK_EQ/CHECK_NE with CHECK_NULL/CHECK_NOT_NULL to check nullptr. These macros are implemented in V8. Refs: https://github.com/denoland/deno_third_party/blob/master/v8/src/base/logging.h#L312
2019-02-04Fixed chart width to responsive (#1670)JaePil Jung
2019-02-03Add hashlinks to website (#1659)Dmitry Sharshakov