Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-02-10 | Rationalise startup for compiler/main (#1737) | Kitson Kelly | |
2019-02-10 | Respect NO_COLOR in TypeScript output (#1736) | Bartek Iwańczuk | |
2019-02-10 | Set globals on compiler startup (#1735) | Bartek Iwańczuk | |
2019-02-09 | Support scoped variables, unblock REPL async op, and REPL error colors (#1721) | Kevin (Kun) "Kassimo" Qian | |
2019-02-08 | Adds deno.noColor (#1716) | Ryan Dahl | |
2019-02-08 | Add --allow-read (#1689) | Dmitry Sharshakov | |
Co-authored-by: Greg Altman <g.s.altman@gmail.com> | |||
2019-02-06 | Add missing run permission in test function (#1697) | JaePil Jung | |
2019-02-05 | Fixed test code (#1688) | JaePil Jung | |
2019-02-05 | Add 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-02 | Add isTTY function (#1622) | Dmitry Sharshakov | |
2019-02-02 | Compiler cleanups and minor improvements (#1656) | Kitson Kelly | |
2019-02-02 | Upgrade deno_std for std/prettier/main.ts | Ryan Dahl | |
2019-02-02 | Clarify writeFile options and avoid unexpected perm modification (#1643) | Kevin (Kun) "Kassimo" Qian | |
2019-02-02 | Add performance.now (#1633) | Dmitry Sharshakov | |
2019-01-31 | Upgrade deno_std to bef7ba (#1609) | Ryan Dahl | |
2019-01-30 | Fix example code of writeFile (#1626) | Masashi Hirano | |
According to spec, `TextEncoder()` takes no parameters. However `TextEncoder("utf-8")` is written in example codes. Spec of TextEncoder: https://www.w3.org/TR/encoding/#interface-textencoder MDN: https://developer.mozilla.org/ja/docs/Web/API/TextEncoder/TextEncoder#Parameters | |||
2019-01-29 | Add repl functions "help" and "exit" (#1563) | Sergey Golovin | |
2019-01-29 | docs/typo: readerIterator -> toAsyncIterator as exported (#1620) | bdistin | |
2019-01-28 | Split out compiler snapshot (#1566) | Kitson Kelly | |
Speeds up startup time, reduces runtime heap size. | |||
2019-01-28 | Combine deno.removeAll into deno.remove (#1596) | Jan Lo | |
2019-01-28 | Add console.table (#1608) | Sergey Golovin | |
2019-01-26 | timers: use int instead of double for timeout type (#1469) | bokuweb | |
2019-01-24 | Add console.clear() (#1562) | binaryta | |
2019-01-24 | console output with format (#1565) | 迷渡 | |
2019-01-23 | fix: set env,key for string and value for string (#1567) | jingweicai | |
2019-01-23 | Minor optimization to repl.ts (#1561) | thefliik | |
2019-01-23 | Web API: CustomEvent (#1505) | Adam Conrad | |
2019-01-21 | chore: update license lines (#1557) | Yoshiya Hinosawa | |
2019-01-21 | Revert "Use the same parse processing at contractor of URL with setters (#1549)" | Ryan Dahl | |
Right now every instance of URL which has a basePath passed will share the same instance of parts, so a change to one of them will change them all. https://github.com/denoland/deno/pull/1549#issuecomment-455896081 This reverts commit 9e1f5ccb8b06c01c1330ed38aeba83cfc51f5387. | |||
2019-01-20 | Use the same parse processing at contractor of URL with setters (#1549) | Daijiro Wachi | |
2019-01-17 | mkdir should not be recursive by default (#1530) | Ryan Dahl | |
It should return an error if a file with the given path exists and recursive isn't specified. Because mode is not used on windows and rarely used in unix, it is made to the last parameter. In collaboration with Stefan Dombrowski <sdo451@gmail.com> | |||
2019-01-17 | Unflake test netConcurrentAccept (#1544) | Kevin (Kun) "Kassimo" Qian | |
2019-01-17 | Revert "fix: fix fetch tests (#1535)" | Ryan Dahl | |
This reverts commit dd081655280243ad6c1e6b99599424f21c3aa456. These tests are still flaky: https://travis-ci.com/denoland/deno/jobs/171240240 https://travis-ci.com/denoland/deno/jobs/170775382 | |||
2019-01-17 | Rewrite tools/format.py in deno (#1528) | Yoshiya Hinosawa | |
Note: findFiles and findFilesWalk are borrowed from the previous attempt of @pseudo-su (#1434) | |||
2019-01-16 | Add globalThis definition to runtime (#1534) | Kitson Kelly | |
2019-01-16 | fix: fix fetch tests (#1535) | Yoshiya Hinosawa | |
2019-01-15 | Kill all pending accepts when TCP listener is closed (#1517) | Kevin (Kun) "Kassimo" Qian | |
2019-01-14 | Fix JSON Modules (#1514) | Kitson Kelly | |
2019-01-13 | Cleanup compiler and re-enable tests (#1512) | Kitson Kelly | |
2019-01-13 | Properly parse network addresses. (#1515) | Ryan Dahl | |
2019-01-13 | Added rid to Conn interface (#1513) | Joshua Flancer | |
2019-01-13 | chore: re-enable test of website (#1508) | Yoshiya Hinosawa | |
2019-01-13 | Remove unnecessary async keyword in test file (#1507) | JaePil Jung | |
2019-01-12 | Remove unused imports (#1503) | JaePil Jung | |
2019-01-09 | Re-enable --recompile (#1492) | Ryan Dahl | |
2019-01-10 | Upgrade deno_std submodule. | Ryan Dahl | |
2019-01-09 | Native ES modules (#1460) | Ryan Dahl | |
* Native ES modules This is a major refactor of internal compiler. Before: JS and TS both were sent through the typescript compiler where their imports were parsed and handled. Both compiled to AMD JS and finally sent to V8 Now: JS is sent directly into V8. TS is sent through the typescript compiler, but tsc generates ES modules now instead of AMD. This generated JS is then dumped into V8. This should much faster for pure JS code. It may improve TS compilation speed. In the future this allows us to separate TS out of the runtime heap and into its own dedicated snapshot. This will result in a smaller runtime heap, and thus should be faster. Some tests were unfortunately disabled to ease landing this patch: 1. compiler_tests.ts which I intend to bring back in later commits. 2. Some text_encoding_test.ts tests which made the file invalid utf8. See PR for a discussion. Also worth noting that this is necessary to support WASM | |||
2019-01-08 | Minimal Worker support (#1476) | Ryan Dahl | |
This adds the ability to spawn additional Isolates from Rust and send and receive messages from them. This is preliminary work to support running the typescript compiler in a separate isolate and thus support native ES modules. Ref #975. | |||
2019-01-06 | Implement console.groupCollapsed (#1452) | Yoshiya Hinosawa | |
This implementation of groupCollapsed is intentionally different from the spec defined by whatwg. See the conversation in #1355 and #1363. | |||
2019-01-06 | Add libdeno.builtinModules (#1463) | Ryan Dahl | |
This is needed to support builtin modules like import { open } from "deno" |