summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-08-28tools/setup: don't overwrite existing args.gnBert Belder
2018-08-28build: regenerate BUILD.gn for cacheable windows toolchainBert Belder
2018-08-28formatBert Belder
2018-08-27Update V8 to 7.0.247Ryan Dahl
2018-08-27Run lastchange.py during setup.pyRyan Dahl
2018-08-27Show mac in build table.Ryan Dahl
2018-08-27Add ability to unit test by permissions.Ryan Dahl
2018-08-27Add deno.argv.Ryan Dahl
2018-08-27allow_reuse_address for test http server.Ryan Dahl
2018-08-27Moved console tests to own file, and switched circular test to use stringify ↵Aaron Power
with assertEqual
2018-08-27Fixed printing strings in arrays & objects without quotesAaron Power
2018-08-26build: fix rust temp file conflicts during parallel buildBert Belder
2018-08-26formatBert Belder
2018-08-26appveyor: verify that ninja files do not use absolute path namesBert Belder
Using absolute paths is generally not intended, and it makes ccache/sccache much less effective.
2018-08-26appveyor: fix conditionalBert Belder
If the build is not a tag build, APPVEYOR_REPO_TAG is [string]"false", which is a truthy value.
2018-08-26build: fix typescript dirs not correctly rebasedBert Belder
2018-08-26build: do not bake absolute paths into deno_nsBert Belder
2018-08-26libdeno: add file utilities Dirname() and ExePath()Bert Belder
2018-08-26formatBert Belder
2018-08-26tools/format: fix clang-format glob patternBert Belder
2018-08-26refactor: add and use libdeno.setGlobalErrorHandler instead of window.onerrorYoshiya Hinosawa
2018-08-26Replaced read_file_sync{_string} with std::fs::read{_to_string}Aaron Power
2018-08-25Prevent circular imports in ts code (#576)Francesco Borzì
2018-08-25Build: make it possible to use ccache/sccache on windowsBert Belder
Also auto-detect the availability of sccache in setup.py.
2018-08-24Integrate ScriptSnapshot into ModuleMetaDataKitson Kelly
2018-08-24Upgrade flatbuffersRyan Dahl
https://github.com/rw/flatbuffers/commit/83a71543f8ccbf230ac27cb523831bfafb9c84d7
2018-08-24travis: allow cache to be saved when build takes too longBert Belder
Kill Ninja after 35 minutes to prevent Travis from cancelling the build due to time-out. This allows the cache to be saved, so the build can complete when it is attempted again.
2018-08-24Add osx to travisAndy Hayden
2018-08-23Improve DenoCompiler.makeDefine and localRequireKitson Kelly
2018-08-23Update Readme with link to releases.Ryan Dahl
2018-08-23Bump version to v0.1.0Ryan Dahl
https://github.com/denoland/deno/milestone/1
2018-08-23Normalize windows paths.Ryan Dahl
Add resolve_module test
2018-08-23First pass at HTTP importsRyan Dahl
Implement --reload Integrate hyper errors into DenoError In collaboration with Tommy Savaria <tommy.savaria@protonmail.ch>
2018-08-23fmtRyan Dahl
2018-08-22Implement writeFileSyncRyan Dahl
In collaboration with Tommy Savaria <tommy.savaria@protonmail.ch>
2018-08-22runtime.ts refactor into compiler.ts (#564)Ryan Dahl
Adds compiler_test.ts
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