summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-08-22Make deploying windows binaries from appveyor workBert Belder
2018-08-22Travis: branches only master prevents building tagsRyan Dahl
It appears there's no way to whitelist tags in addition to master, so we can just build all for now. https://github.com/travis-ci/travis-ci/issues/2111
2018-08-22Add appveyor binary deploy. (#556)Ryan Dahl
Also switch to release mode.
2018-08-22Bump version to v0.0.3Ryan Dahl
2018-08-22Change usage example script extension from .js to .tsJeremy Banks
2018-08-21Expose deno.exit() and add test.Ryan Dahl
2018-08-21Better error handling in src/handlers.rsRyan Dahl
Introduces error codes that are shared between JS/RS Fixes #526.
2018-08-21Travis deploy (#548)Ryan Dahl
* Fix travis deploy / simplify build. - No more stages, only build release mode. - Fixes API key issue. * Reinstate master only - testing was successful.
2018-08-20Fix TS errors in fetch.tsRyan Dahl
2018-08-20First pass at fetch()Ryan Dahl
With help from Thomas Ghysels <info@thomasg.be>
2018-08-20Add hyper dependenciesThomas Ghysels
2018-08-20Enable http server for tests.Ryan Dahl
2018-08-19Readme: specify build deps more carefully (#547)C. K. Tang
2018-08-19add notImplemented and unreachable util functions (#540)Bartek IwaƄczuk
2018-08-19chore: move libdeno files to //libdeno/Yoshiya Hinosawa
2018-08-18Add an error message if rustc is not installedAndy Hayden
2018-08-18Fix travis release builds (#539)Robert Lin
2018-08-18Rename :all target to :defaultRyan Dahl
2018-08-18build: don't clobber rust depfile mtime when fixing its pathsBert Belder
This avoids ninja unnecessarily rebuilding rust targets. Add a check for problems like these to be run on appveyor.
2018-08-17Use snake-case for cmd_id.Ryan Dahl
2018-08-17Upgrade fbs to latest.Ryan Dahl
Reduces numbers of warnings.
2018-08-17Command line flag parsing (#524)Ryan Dahl
In particular this allow -D for logging debug output.
2018-08-17appveyor: automatically remove stale build outputs from cacheBert Belder
2018-08-17appveyor: use somewhat terser styleBert Belder
2018-08-17appveyor: work around rust parellel build conflictBert Belder
2018-08-17appveyor: never save cache after a failed CI runBert Belder
2018-08-17Add yarn.lock to third_partyRyan Dahl
Prevents upgrades with running tools/sync_third_party.py
2018-08-17chore: download clang-format from google storageYoshiya Hinosawa
2018-08-17chore: format files in tests/Yoshiya Hinosawa
2018-08-17Travis: publish from CI (#501)Robert Lin
Split travis build into stages, add release stage.
2018-08-17import sys since sys.exit(1) usedmervynzhang
2018-08-16Remove dead code: src/flatbuffer_builder.ccRyan Dahl
2018-08-16Implement deno_handle_msg_from_js in RustRyan Dahl
Fixes #419, #414.
2018-08-16Upgrade Rust FlatbuffersRyan Dahl
2018-08-15Use typescript strict mode (#505)Kitson Kelly
2018-08-14chore: introduce rust_treat_warnings_as_errors build argYoshiya Hinosawa
2018-08-13fix: change :test_cc to v8_executableYoshiya Hinosawa
2018-08-13Fix transitive rust deps.Ryan Dahl
Use a single out_dir for all rust crates.
2018-08-13Use source_set for rust_crateRyan Dahl
2018-08-13s/rust_component/rust_crate/Ryan Dahl
2018-08-13Use `@internal` with js/timers.tsKitson Kelly
2018-08-11Add async tests from prototypeRyan Dahl
2018-08-11Rename mock_runtime_test to libdeno_testRyan Dahl
Fixes #465
2018-08-11Use unit_tests for readFileSync testing.Ryan Dahl
2018-08-10Add error testsKitson Kelly
2018-08-10Fix stacktraces in deno_nsKitson Kelly
2018-08-10Support wildcard matching of output in testsKitson Kelly
2018-08-10Only emit declarations for generated files (#502)Kitson Kelly
and remove declarationMap flag from generated tsconfig
2018-08-09Change Deno::new to return an owned BoxRobby Madruga
2018-08-09Adds js/unit_tests.ts (#448)Ryan Dahl