summaryrefslogtreecommitdiff
path: root/tools
AgeCommit message (Collapse)Author
2019-01-15 Add --prefetch flag for deps prefetch without running (#1475)Kevin (Kun) "Kassimo" Qian
2019-01-13Fix permission_prompt_test (#1509)Ryan Dahl
2019-01-12Add --allow-run test code (#1504)JaePil Jung
2019-01-09Fix flaky REPL test (#1491)Maxim Mazurok
Fixes #1490
2019-01-03Move testing module to deno_std (#1451)Ryan Dahl
Upgrades deno_std submodule.
2019-01-03Support more fetch init body types (#1449)Kevin (Kun) "Kassimo" Qian
2019-01-02Happy new year!Ryan Dahl
2018-12-27Lazily create .mime files only with mismatch/no extension (#1417)Kevin (Kun) "Kassimo" Qian
2018-12-24deno_net -> deno_std renameRyan Dahl
Also don't format external js/deps
2018-12-21Implement `Body.formData` for fetch (#1393)Kevin (Kun) "Kassimo" Qian
2018-12-18travis: Set CARGO_HOME to third_party/rust_crates (#1370)Ryan Dahl
Adds prebuilt hyperfine and sccache binaries Only build test_cc for LSAN Add Cargo.lock Only run benchmarks in master
2018-12-18Load sccache from S3 on CIRyan Dahl
2018-12-18Remove prebuilt v8 supportBert Belder
2018-12-18Enable jumbo build in release. (#1362)Ryan Dahl
2018-12-11tools: remove_and_symlink can be skipped on unixRyan 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-10Use stderr for exceptions (#1303)Ryan Dahl
2018-12-07Add benchmark for net/http (#1289)Bartek IwaƄczuk
2018-12-06Use alternate TextEncoder/TextDecoder implementation (#1281)Kitson Kelly
This is faster and smaller.
2018-12-03Add 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-03third_party: symlink //third_party/v8/build => //buildBert Belder
2018-11-30Use pylint.Ryan Dahl
2018-11-30Fix flaky REPL test.Ryan Dahl
2018-11-29Add prebuilt/win/v8_debug.lib (#1249)Ryan Dahl
The windows debug build was broken due to libc link errors.
2018-11-29Make //build a git submoduleRyan Dahl
So we can float patches before sending them upstream. https://github.com/denoland/chromium_build Remove build_extra/toolchain
2018-11-29Move libdeno build config to libdeno/BUILD.gnRyan Dahl
2018-11-29Cleanup setTimeout repl test and alphabetize testsAndy Hayden
2018-11-28REPL unblock event loop AND fix REPL setTimeout fire problemsKevin (Kun) "Kassimo" Qian
2018-11-27Use 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-27gitignore vim .swp filesRyan Dahl
2018-11-16First pass at running subprocesses (#1156)Bert Belder
2018-11-14Add a simple doc generation tool.Ryan Dahl
And website upload tool.
2018-11-09Ensure global type instances are available.Kitson Kelly
2018-11-08build: Use target/ instead of out/ (#1153)Ryan Dahl
2018-11-06Support repl multiline input (#1165)Andy Hayden
2018-11-05Add repl (#998)Andy Hayden
- Running repl from js side. - Add tests for repl behavior. - Handle ctrl-C and ctrl-D.
2018-11-05Fix issue with runtime lib generation.Kitson Kelly
2018-11-04Improve integration test harness (#1142)Kitson Kelly
2018-11-04Improve robustness of lib builder.Kitson Kelly
2018-10-31Support 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-30Make format.py less verbose.Ryan Dahl
2018-10-28Add application/x-typescript mime type supportKevin (Kun) "Kassimo" Qian
2018-10-27Ergonomics: Prompt TTY for permission escalation (#1081)Ryan Dahl
2018-10-26Disable treat_warnings_as_errors on windows when sccache is in useBert Belder
2018-10-25Add error_001.ts to execution time benchmarks.Ryan Dahl
Ref #1087
2018-10-24Remove deno_nsRyan Dahl
2018-10-23Add node_tcp target to http_benchmark. (#1074)Ryan Dahl
2018-10-23format: don't format files in third_partyBert 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-23third_party: install yapf with pipBert Belder
2018-10-23Bundle pywin32 in third_partyBert Belder
2018-10-23Enforce media typesKitson Kelly