Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-08-03 | Replace protobuf with flatbuffer | Mihal Malostanidis | |
2018-08-03 | Fix badges | Ryan Dahl | |
Add gitter link. | |||
2018-08-03 | Improve rust build docs | Ryan Dahl | |
2018-08-02 | Use build.py -j2 on travis. | Ryan Dahl | |
Avoids OOM during rollup. | |||
2018-08-02 | Update repo links to denoland. | Ryan Dahl | |
2018-08-02 | Update README | 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 | Fix snapshot build dependencies. | Ryan Dahl | |
2018-08-02 | Travis: cache ~/.cargo | Ryan Dahl | |
2018-08-02 | Add 005_more_imports.ts | Ryan Dahl | |
And run check_output_test in order. | |||
2018-08-02 | Remove dispatch.ts and move assignCmdId to util.ts | Ryan Dahl | |
2018-08-02 | Set up Appveyor | Bert Belder | |
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-08-02 | rollup: add extension to mock_builtin.js | Bert Belder | |
2018-08-02 | tools: fix `tools/clang` symlink on startup | Bert Belder | |
2018-08-01 | Update protobuf link to flatbuffer | Karl Horky | |
Ref: https://github.com/ry/deno/pull/330 | |||
2018-08-01 | Optimize compile time by using asm. | Ryan Dahl | |
Switches to using asm incbin to embed the V8 snapshot instead of outputing C code and then compiling it. Compile time for from_snapshot.o goes from 44s to 1s. | |||
2018-08-01 | Better handling of exceptions during snapshot creation. | Ryan Dahl | |
2018-08-01 | build: use compiled_action for create_snapshot. | Ryan Dahl | |
Switch the order of the snapshot_creator args, in order to allow for optional source map arg. | |||
2018-08-01 | Add base64-js to third_party. | Ryan Dahl | |
It's a dependency of js/v8_source_maps.ts. | |||
2018-07-31 | Upgrade TypeScript (3.0.1) | Kitson Kelly | |
Update runtime to use lib.deno.d.ts Add proper console declaration Upgrade prettier (There was an issue formatting lib.deno.d.ts) | |||
2018-07-29 | Install sysroot on linux. | Ryan Dahl | |
2018-07-29 | Remove depot_tools from travis. | Ryan Dahl | |
Fixes #399 | |||
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-29 | Add winapi crate, make 'rand' and 'tempfile' work | Bert Belder | |
2018-07-29 | Add "features" argument to rust components | Bert Belder | |
2018-07-29 | Implement CodeCache | Ryan Dahl | |
2018-07-29 | Add sha1 and tempfile crates. | Ryan Dahl | |
2018-07-29 | spelling | Ryan Dahl | |
2018-07-29 | Add from_c() to get a Deno object from ptr. | Ryan Dahl | |
This is a utility function for CodeCache and other handlers. | |||
2018-07-29 | Implement a logger so we can get logging output. | Ryan Dahl | |
2018-07-29 | Add tests/003_relative_import.ts | Ryan Dahl | |
2018-07-27 | Ignore any generated TypeScript files | Kitson Kelly | |
2018-07-26 | Simplify run_rustc.py output. | Ryan Dahl | |
2018-07-26 | Fix clang warning. | Ryan Dahl | |
warning: comparison of integers of different signs: 'const unsigned long' and 'const int' [-Wsign-compare] | |||
2018-07-26 | Run tools/format.py | Ryan Dahl | |
2018-07-25 | Remove msg_generated hack (#409) | Kitson Kelly | |
2018-07-25 | Add --v8-options flag (#405) | robbym | |
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 | Add tools/build.py (#398) | Ryan Dahl | |
To allow better tab completion for ./tools/build.py mv build_third_party.py sync_third_party.py | |||
2018-07-24 | Remove handlers crate target. | Ryan Dahl | |
- Add build scripts for Rust flatbuffers. - Rewrites some reply.cc methods in Rust. - Changes some struct elements to table in msg.fbs (rust flatbuffers lacks support currently) - Renames handlers_test to test_rs. - This reorg is needed to make progress on the code cache handler. | |||
2018-07-24 | Allow deno_buf with null alloc_ptr to be memcpy'd | Ryan Dahl | |
This is a temporary hack to allow for easier restructuring of the serialization code as we move Flatbuffer stuff from C++ to Rust. | |||
2018-07-24 | Add mock_runtime_test for deno_last_exception. | Ryan Dahl | |
2018-07-24 | Fix recursive globbing in tools/format.py | Ryan Dahl | |
And use third_party/depot_tools/gn. | |||
2018-07-24 | Change copyrights to be 'Deno authors'. | Ryan Dahl | |
2018-07-22 | Make check_output_test.py tolerate CRLF line endings in test output | Bert Belder | |
2018-07-22 | Fix resolve_module() when module_specifier is an absolute file path | Bert Belder | |
2018-07-22 | Update third_party submodule | Ryan Dahl | |
2018-07-22 | Replace packer with rollup | Kitson Kelly | |