Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-10-02 | Guess extensions on extension not provided (#859) | Kevin (Kun) "Kassimo" Qian | |
Fixes #857 | |||
2018-09-28 | Adds basic File I/O and FD table. | Ryan Dahl | |
Adds deno.stdin, deno.stdout, deno.stderr, deno.open(), deno.write(), deno.read(), deno.Reader, deno.Writer, deno.copy(). Fixes #721. tests/cat.ts works. | |||
2018-09-10 | fbs_util.ts -> dispatch.ts | Ryan Dahl | |
And send() -> sendSync() | |||
2018-09-09 | Better NotFound error handling in CodeFetch | Ryan Dahl | |
throwResolutionError was swallowing unrelated errors. | |||
2018-09-06 | Cleanup public API of DenoCompiler | Kitson Kelly | |
2018-09-05 | Improve module resolution. | Ryan Dahl | |
Windows can't handle ":" in path names, so we use a special directory format .deno/deps/localhost_PORT4545/ to represent hosts with non-default ports. Fixes #645. | |||
2018-09-05 | Mark APIs at internal and include JSDoc in types | Kitson Kelly | |
2018-09-01 | Bundle most types into globals.d.ts (#642) | Kitson Kelly | |
2018-08-30 | Support https imports. | Ryan Dahl | |
Adds hyper-rustls to the build. Use ring for sha1 instead of "ssh1" crate. Fixes #528. | |||
2018-08-28 | Two-pass module evaluation. | Kitson Kelly | |
Plus changes to tests to accomodate. | |||
2018-08-28 | Add duplicate import test | Kitson Kelly | |
2018-08-23 | Improve DenoCompiler.makeDefine and localRequire | Kitson Kelly | |
2018-08-23 | First pass at HTTP imports | Ryan Dahl | |
Implement --reload Integrate hyper errors into DenoError In collaboration with Tommy Savaria <tommy.savaria@protonmail.ch> | |||
2018-08-22 | runtime.ts refactor into compiler.ts (#564) | Ryan Dahl | |
Adds compiler_test.ts | |||
2018-08-21 | Expose deno.exit() and add test. | Ryan Dahl | |
2018-08-20 | First pass at fetch() | Ryan Dahl | |
With help from Thomas Ghysels <info@thomasg.be> | |||
2018-08-17 | chore: format files in tests/ | Yoshiya Hinosawa | |
2018-08-11 | Add async tests from prototype | Ryan Dahl | |
2018-08-11 | Use unit_tests for readFileSync testing. | Ryan Dahl | |
2018-08-10 | Add error tests | Kitson Kelly | |
2018-08-09 | Add readFileSync | Ryan Dahl | |
2018-08-09 | First pass at setTimeout with Tokio (#434) | Ryan Dahl | |
2018-08-02 | Source map support (#429) | Ryan Dahl | |
This change increases size: out/debug/obj/libdeno/from_snapshot.o 19M -> 34M out/release/deno 32M -> 47M | |||
2018-08-02 | Add 005_more_imports.ts | Ryan Dahl | |
And run check_output_test in order. | |||
2018-07-29 | Add tests/003_relative_import.ts | Ryan Dahl | |
2018-07-21 | Add tools/test.py test runner. (#384) | Ryan Dahl | |