Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-01-15 | Add --prefetch flag for deps prefetch without running (#1475) | Kevin (Kun) "Kassimo" Qian | |
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-11-30 | Use pylint. | Ryan Dahl | |
2018-11-08 | build: Use target/ instead of out/ (#1153) | Ryan Dahl | |
2018-11-04 | Improve integration test harness (#1142) | Kitson Kelly | |
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 | Bundle pywin32 in third_party | Bert Belder | |
2018-10-20 | Add rustfmt to third_party. | Ryan Dahl | |
2018-10-16 | First pass at http benchmark. | Ryan Dahl | |
2018-10-11 | Improve tools/unit_tests.py (#958) | Ryan Dahl | |
Checks the output more carefully. The first line of output from js/unit_tests.ts should be something like "running 96 tests" And the last line should be something like "test result: ok. 96 passed; 0 failed; 0 ignored; 0 measured; 36 filtered out" This parses those strings and make sure they align. This will catch silent death bugs. | |||
2018-09-30 | tools: define ERROR_INVALID_PARAMETER in utils.py | Bert Belder | |
Fixes #865. | |||
2018-09-26 | tools: add shell_quote() utility function | Bert Belder | |
2018-09-24 | tools: make color output work on windows | Bert Belder | |
2018-08-21 | Expose deno.exit() and add test. | Ryan Dahl | |
2018-08-10 | Support wildcard matching of output in tests | Kitson Kelly | |
2018-08-02 | util: make symlink() work on older Windows versions | Bert Belder | |
2018-08-02 | tools/setup: avoid running `gn gen` twice in the same output directory | Bert Belder | |
2018-07-29 | Rename run_hooks.py to setup.py | Ryan Dahl | |
Moves 'gn gen' into setup.py Make tools/build.py more ergonomic. | |||
2018-07-26 | Simplify run_rustc.py output. | Ryan Dahl | |
2018-07-25 | Clean up and fix tools | Bert Belder | |
* Make sync_third_party work in general * Un-break build.py and run_hooks.py on windows * Partially fix format.py on windows * Reduce code duplication between run_hooks and sync_third_party | |||
2018-07-24 | Fix recursive globbing in tools/format.py | Ryan Dahl | |
And use third_party/depot_tools/gn. | |||
2018-07-21 | Add tools/test.py test runner. (#384) | Ryan Dahl | |
2018-07-21 | Fix symlink creation on windows | Bert Belder | |
2018-07-18 | Use Cargo to install rust deps into //third_party/rust_crates (#383) | robbym | |
2018-07-18 | Reduce unnecessary build output. | Ryan Dahl | |
2018-07-08 | tools: fix windows | Bert Belder | |
This fixes most things, but format.py doesn't work yet, because yapf is broken due to some depot_tools shimming python. | |||
2018-07-08 | Clean up tools/ | Ryan Dahl | |
- Factor out tools/util.py - Move js/*.py to tools. - Rewrite tools/format.sh in python. - Run lint first in travis. |