Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-02-02 | Add performance.now (#1633) | Dmitry Sharshakov | |
2019-02-01 | src: simplify rust code | Bert Belder | |
2019-02-01 | Revise build instructions for windows (#1641) | Ajit Rana | |
2019-01-31 | Add item to CONTRIBUTING.md about needing tests | Kitson Kelly | |
This adds requiring tests covering the change as a pre-req before raising a PR. | |||
2019-01-31 | Upgrade deno_std to bef7ba (#1609) | Ryan Dahl | |
2019-01-31 | Improve build instructions (#1593) | Tim van der Lippe | |
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-30 | appveyor: Remove dead code (#1621) | Ryan Dahl | |
2019-01-30 | Fix cpplint | Ryan Dahl | |
2019-01-30 | libdeno: improve exception handling | Ryan Dahl | |
2019-01-30 | Add snapshot_compiler.bin to binary size benchmark (#1611) | Ryan Dahl | |
2019-01-30 | Remove Travis benchmark (#1617) | Ryan Dahl | |
- We don't look at this benchmark because it jumps around. It isn't stable so doesn't feel trustable. - It requires an extra request for every homepage visit. This is excessive. - I would gladly reintroduce it if we could store the results of the API call into a JSON file like we do with other benchmarks. | |||
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 | v0.2.9 | Ryan Dahl | |
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-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-28 | Combine deno.removeAll into deno.remove (#1596) | Jan Lo | |
2019-01-28 | Add console.table (#1608) | Sergey Golovin | |
2019-01-28 | Change subtitle to 'A new way to JavaScript' (#1603) | Dmitry Sharshakov | |
2019-01-27 | Readme: Use shell installer (#1598) | Dmitry Sharshakov | |
2019-01-26 | timers: use int instead of double for timeout type (#1469) | bokuweb | |
2019-01-26 | Create .editorconfig file (#1592) | Dmitry Sharshakov | |
2019-01-26 | Add PWA manifest to website (#1585) | Dmitry Sharshakov | |
2019-01-26 | third_party: add the 'integer-atomics' crate | Bert Belder | |
2019-01-26 | third_party: force all crates to use the latest version of rand_core | Bert Belder | |
2019-01-26 | third_party: upgrade rust crates | Bert Belder | |
2019-01-26 | Add PowerShell install guide to the website (#1590) | Dmitry Sharshakov | |
2019-01-26 | Make links and badges look better (#1588) | Dmitry Sharshakov | |
2019-01-26 | Revert "Upgrade tslint and friends (#1571)" (#1573) | Ryan Dahl | |
This commit was cauing a still problem described here: https://github.com/denoland/deno/issues/1259 This reverts commit d0dc4deaad858babcb612b181986db254db64dfa. | |||
2019-01-26 | Upgrade sccache binaries to 0.2.8 (#1576) | Ryan Dahl | |
Binaries are directly from https://github.com/mozilla/sccache/releases/tag/0.2.8 | |||
2019-01-25 | Use shell installer in docs (#1574) | Dmitry Sharshakov | |
2019-01-24 | Upgrade tslint and friends (#1571) | Ryan Dahl | |
2019-01-24 | Add console.clear() (#1562) | binaryta | |
2019-01-24 | console output with format (#1565) | 迷渡 | |
2019-01-24 | Minor code cleanups (#1570) | JaePil Jung | |
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 | fix: build deno under node_modules folder (#1555) | jingweicai | |
2019-01-20 | Use the same parse processing at contractor of URL with setters (#1549) | Daijiro Wachi | |
2019-01-20 | docs(Releases.md): correct go prototype dates | Yoshiya Hinosawa | |
2019-01-19 | v0.2.8 | Ryan Dahl | |
2019-01-18 | Avoid crashes on ES module resolution when module not found (#1546) | Kevin (Kun) "Kassimo" Qian | |
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 | |