Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-08-08 | Fix rust logger. | Ryan Dahl | |
2018-08-08 | Hacky error handling for Url::from_file_path. | Ryan Dahl | |
2018-08-08 | Print output even when test failed. | Ryan Dahl | |
2018-08-09 | Remove the 'cfg' variable from rust templates | Bert Belder | |
It's never been used for anything other than enabling crate features. Use the 'features' variable instead, it's more readable and more terse. | |||
2018-08-09 | Remove 'rust_staticlib' build template | Bert Belder | |
It's not used for anything, nor are we planning to use it. | |||
2018-08-09 | Fix test_cc build dependencies | Bert Belder | |
2018-08-09 | Make 'tokio' build on windows, add windows deps | Bert Belder | |
2018-08-09 | Support building multiple versions of a rust crate | Bert Belder | |
This is only to be used in exceptional cases. Generally we don't allow using multiple versions of a crate. | |||
2018-08-09 | Add 'tokio' and dependencies | Robby Madruga | |
Use tokio from git. | |||
2018-08-08 | Remove yarn.lock | Ryan Dahl | |
Fixes #393. | |||
2018-08-08 | Generate declarations | Kitson Kelly | |
2018-08-08 | Create ASSETS const in runtime.ts | Kitson Kelly | |
2018-08-08 | Rename lib.deno.d.ts to lib.globals.d.ts | Kitson Kelly | |
2018-08-07 | Add Cargo.lock to .gitignore. | Ryan Dahl | |
2018-08-07 | travis: adjust cache | Ryan Dahl | |
- cache sysroot and llvm-build so they don't have to be downloaded each time. - Remove DENO_BUILD_PATH from cache. ccache does all the heavy lifting, no need to cache the build dir. | |||
2018-08-07 | Remove //third_party/v8/third_party/depot_tools | Ryan Dahl | |
It was a duplicate of //third_party/depot_tools | |||
2018-08-07 | Disable CFI for now. | Ryan Dahl | |
Fixes Linux release build. | |||
2018-08-04 | Appveyor updates | Bert Belder | |
* Don't update the cache after building a PR or feature branch. * Work around 'rustup update' erroring when an update is found. * Log deleted directories and success/failure status. * Make build log less noisy. | |||
2018-08-03 | Implement os.exit | Ryan Dahl | |
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. |