Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-12-11 | tools: remove_and_symlink can be skipped on unix | Ryan Dahl | |
This is more optimial and this fixes a problem where occasionally remove_and_symlink will error with: gen/compiler_bundle/main.js --sourcemapFile /Users/rld/src/deno --silent Traceback (most recent call last): File "../../tools/run_node.py", line 18, in <module> util.remove_and_symlink(target_rel, "node_modules", True) File "/Users/rld/src/deno/tools/util.py", line 103, in remove_and_symlink symlink(target, name, target_is_dir) File "/Users/rld/src/deno/tools/util.py", line 141, in symlink os.symlink(target, name) OSError: [Errno 17] File exists | |||
2018-12-10 | Use stderr for exceptions (#1303) | Ryan Dahl | |
2018-12-07 | Add benchmark for net/http (#1289) | Bartek IwaĆczuk | |
2018-12-06 | Use alternate TextEncoder/TextDecoder implementation (#1281) | Kitson Kelly | |
This is faster and smaller. | |||
2018-12-03 | Add LSAN build to travis. | Ryan Dahl | |
For now it only runs test_cc and has to filter out a test which leaks. However we will expand this over time until the entire build is LSAN clean. | |||
2018-12-03 | third_party: symlink //third_party/v8/build => //build | Bert Belder | |
2018-11-30 | Use pylint. | Ryan Dahl | |
2018-11-30 | Fix flaky REPL test. | Ryan Dahl | |
2018-11-29 | Add prebuilt/win/v8_debug.lib (#1249) | Ryan Dahl | |
The windows debug build was broken due to libc link errors. | |||
2018-11-29 | Make //build a git submodule | Ryan Dahl | |
So we can float patches before sending them upstream. https://github.com/denoland/chromium_build Remove build_extra/toolchain | |||
2018-11-29 | Move libdeno build config to libdeno/BUILD.gn | Ryan Dahl | |
2018-11-29 | Cleanup setTimeout repl test and alphabetize tests | Andy Hayden | |
2018-11-28 | REPL unblock event loop AND fix REPL setTimeout fire problems | Kevin (Kun) "Kassimo" Qian | |
2018-11-27 | Use prebuilt V8 library by default. | Ryan Dahl | |
This still retains the ability to build V8 from scratch, with an number of configurations. The prebuilt binaries were created using DENO_BUILD_MODE=release ./tools/build.py v8 | |||
2018-11-27 | gitignore vim .swp files | Ryan Dahl | |
2018-11-16 | First pass at running subprocesses (#1156) | Bert Belder | |
2018-11-14 | Add a simple doc generation tool. | Ryan Dahl | |
And website upload tool. | |||
2018-11-09 | Ensure global type instances are available. | Kitson Kelly | |
2018-11-08 | build: Use target/ instead of out/ (#1153) | Ryan Dahl | |
2018-11-06 | Support repl multiline input (#1165) | Andy Hayden | |
2018-11-05 | Add repl (#998) | Andy Hayden | |
- Running repl from js side. - Add tests for repl behavior. - Handle ctrl-C and ctrl-D. | |||
2018-11-05 | Fix issue with runtime lib generation. | Kitson Kelly | |
2018-11-04 | Improve integration test harness (#1142) | Kitson Kelly | |
2018-11-04 | Improve robustness of lib builder. | Kitson Kelly | |
2018-10-31 | Support cargo check (#1128) | Ryan Dahl | |
- Based on code from @qti3e and @piscisaureus in #724 and #1125 respectively. - TODO The DENO_BUILD_PATH env var must be supplied and must be an absolute path, this restriction should be removed in future work. | |||
2018-10-30 | Make format.py less verbose. | Ryan Dahl | |
2018-10-28 | Add application/x-typescript mime type support | Kevin (Kun) "Kassimo" Qian | |
2018-10-27 | Ergonomics: Prompt TTY for permission escalation (#1081) | Ryan Dahl | |
2018-10-26 | Disable treat_warnings_as_errors on windows when sccache is in use | Bert Belder | |
2018-10-25 | Add error_001.ts to execution time benchmarks. | Ryan Dahl | |
Ref #1087 | |||
2018-10-24 | Remove deno_ns | Ryan Dahl | |
2018-10-23 | Add node_tcp target to http_benchmark. (#1074) | Ryan Dahl | |
2018-10-23 | format: don't format files in third_party | Bert Belder | |
It's annoying, and it also makes appveyor slow because it will re-upload the third_party cache every time something changes in there. | |||
2018-10-23 | third_party: install yapf with pip | Bert Belder | |
2018-10-23 | Bundle pywin32 in third_party | Bert Belder | |
2018-10-23 | Enforce media types | Kitson Kelly | |
2018-10-22 | Improve globals for runtime type library | Kitson Kelly | |
2018-10-21 | CI should fail when code isn't formatted. | Ryan Dahl | |
2018-10-21 | Add yapf to third_party. | Ryan Dahl | |
2018-10-21 | Add URLSearchParams (#1049) | Kyra | |
2018-10-20 | Add Rust hyper http benchmark (#1043) | Kevin (Kun) "Kassimo" Qian | |
* Add go net/http benchmark * Forget about Go. Let's do Rust Hyper * Update BUILD.gn * Rename | |||
2018-10-20 | feat: show only 20 benchmark data in inde.html | Yoshiya Hinosawa | |
2018-10-20 | Add rustfmt to third_party. | Ryan Dahl | |
2018-10-20 | Exit http_server.py if it's crashed | Andy Hayden | |
2018-10-19 | Add missing copyrights (#1024) | ztplz | |
2018-10-19 | Fix a typo in http_benchmark.py | J2P | |
2018-10-17 | Optimization: Reuse ArrayBuffer during serialization. | Ryan Dahl | |
2018-10-17 | Add tools/build_test.py | Ryan Dahl | |
2018-10-17 | Only run deno during ./tools/http_benchmark.py | Ryan Dahl | |
2018-10-16 | improve benchmark page performance and fix test (#1002) | Yoshiya Hinosawa | |