Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-08-17 | appveyor: work around rust parellel build conflict | Bert Belder | |
2018-08-17 | appveyor: never save cache after a failed CI run | Bert Belder | |
2018-08-17 | Add yarn.lock to third_party | Ryan Dahl | |
Prevents upgrades with running tools/sync_third_party.py | |||
2018-08-17 | chore: download clang-format from google storage | Yoshiya Hinosawa | |
2018-08-17 | chore: format files in tests/ | Yoshiya Hinosawa | |
2018-08-17 | Travis: publish from CI (#501) | Robert Lin | |
Split travis build into stages, add release stage. | |||
2018-08-17 | import sys since sys.exit(1) used | mervynzhang | |
2018-08-16 | Remove dead code: src/flatbuffer_builder.cc | Ryan Dahl | |
2018-08-16 | Implement deno_handle_msg_from_js in Rust | Ryan Dahl | |
Fixes #419, #414. | |||
2018-08-16 | Upgrade Rust Flatbuffers | Ryan Dahl | |
2018-08-15 | Use typescript strict mode (#505) | Kitson Kelly | |
2018-08-14 | chore: introduce rust_treat_warnings_as_errors build arg | Yoshiya Hinosawa | |
2018-08-13 | fix: change :test_cc to v8_executable | Yoshiya Hinosawa | |
2018-08-13 | Fix transitive rust deps. | Ryan Dahl | |
Use a single out_dir for all rust crates. | |||
2018-08-13 | Use source_set for rust_crate | Ryan Dahl | |
2018-08-13 | s/rust_component/rust_crate/ | Ryan Dahl | |
2018-08-13 | Use `@internal` with js/timers.ts | Kitson Kelly | |
2018-08-11 | Add async tests from prototype | Ryan Dahl | |
2018-08-11 | Rename mock_runtime_test to libdeno_test | Ryan Dahl | |
Fixes #465 | |||
2018-08-11 | Use unit_tests for readFileSync testing. | Ryan Dahl | |
2018-08-10 | Add error tests | Kitson Kelly | |
2018-08-10 | Fix stacktraces in deno_ns | Kitson Kelly | |
2018-08-10 | Support wildcard matching of output in tests | Kitson Kelly | |
2018-08-10 | Only emit declarations for generated files (#502) | Kitson Kelly | |
and remove declarationMap flag from generated tsconfig | |||
2018-08-09 | Change Deno::new to return an owned Box | Robby Madruga | |
2018-08-09 | Adds js/unit_tests.ts (#448) | Ryan Dahl | |
2018-08-09 | Add readFileSync | Ryan Dahl | |
2018-08-09 | Add fs::read_file_sync_string | Ryan Dahl | |
2018-08-09 | Add TextEncoder/TextDecoder support. | Ryan Dahl | |
Fixes #470 This commit increases size: out/release/gen/bundle/main.js 7.3M -> 7.9M out/release/gen/bundle/main.js.map 11M -> 12M out/release/gen/snapshot_deno.bin 34M -> 37M out/release/deno 49M -> 53M Note the amount in the JS code added is quite small: 4.0K node_modules/text-encoding/index.js 4.0K node_modules/@types/text-encoding/index.d.ts 4.0K js/text_encoding.ts Unclear to me what is causing the jump in snapshot size. | |||
2018-08-09 | First pass at setTimeout with Tokio (#434) | Ryan Dahl | |
2018-08-08 | Use sourcemapFile to reroot sourcemap sources | Kitson Kelly | |
2018-08-08 | Remove RUSTFMT_FLAGS | Ryan Dahl | |
2018-08-08 | Organize libdeno functions. | Ryan Dahl | |
2018-08-08 | Change rustfmt flags. For v0.8.2. | Ryan Dahl | |
2018-08-08 | Better error for 'No such asset' | Ryan Dahl | |
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. |