summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-09-24Add `toString` for CallSite of eval origin (#809)Kevin (Kun) "Kassimo" Qian
2018-09-24Add flag --recompile (#801)Bartek IwaƄczuk
2018-09-24Start testing website (#813)Yoshiya Hinosawa
2018-09-24[console] Use constructor.name to print out function type (#664)Kevin (Kun) "Kassimo" Qian
2018-09-23benchmark: track the binary size (#804)Yoshiya Hinosawa
2018-09-22travis: fix the build, attempt 2Bert Belder
2018-09-22Rename deno.argv, libdeno::DenoC and deno_set_flags (#796)ztplz
2018-09-22Update README and Roadmap. (#799)Ryan Dahl
2018-09-22travis: fix github pages deploy conditionBert Belder
2018-09-22travis: run benchmarks on linux, deploy to github pagesBert Belder
2018-09-22travis: clean up & tweaksBert Belder
2018-09-22Add benchmark tools (#777)Yoshiya Hinosawa
2018-09-22Implement deno.trace() (#795)Kevin (Kun) "Kassimo" Qian
2018-09-21v0.1.5Ryan Dahl
- Add atob() btoa() #776 - Add deno.arch deno.platform #773 - Add deno.symlink() and deno.symlinkSync() #742 - Add deno.mkdir() and deno.mkdirSync() #746 - Add deno.makeTempDir() #740 - Improvements to FileInfo interface #765, #761 - Add fetch.blob() - Upgrade V8 to 7.0.276.15 - Upgrade Rust crates
2018-09-21Revert "Add benchmark tools (#777)"Bert Belder
This reverts commit 3ad48bdb3e6372f55579808535ce2c17809178ff.
2018-09-21Add benchmark tools (#777)Yoshiya Hinosawa
2018-09-20Add atob() and btoa() (#776)Kevin (Kun) "Kassimo" Qian
2018-09-20Fix async-await syntaxJamie
2018-09-20Add deno.arch/deno.platform (#773)Kevin (Kun) "Kassimo" Qian
2018-09-18Implement deno.symlink() (#742)Mani Maghsoudlou
2018-09-17appveyor: show test output in the build log in realtimeBert Belder
2018-09-17appveyor: don't persist rollup cache in appveyor cacheBert Belder
Rollups cache usage has turned out to be unreliable, reusing stale data that should be regenerated.
2018-09-17formatBert Belder
2018-09-17Remove unused .gclient_entries file.Ryan Dahl
2018-09-17Upgrade V8 to 7.0.276.15Ryan Dahl
2018-09-17Isolate::execute doesn't need mutability.Ryan Dahl
2018-09-17Rename Deno to Isolate and move to own file.Ryan Dahl
2018-09-17Make mode always u32 and switch to has_mode for StatRes fbs (#761)Kevin (Kun) "Kassimo" Qian
2018-09-17Add missing deps to cargo.tomlBert Belder
We're using ring and futures directly, so they should be listed in cargo.toml.
2018-09-17Upgrade rust crates.Ryan Dahl
2018-09-17Change FileInfo to interface (#765)ztplz
2018-09-16Treat rust warnings as errorsBert Belder
2018-09-16Suppress remaining warnings in third party rust cratesBert Belder
2018-09-16Use `dirs::home_dir` to replace deprecated `std::env::home_dir`Kevin (Kun) "Kassimo" Qian
2018-09-16Add the 'dirs' crate, enable the required 'winapi' featuresKevin (Kun) "Kassimo" Qian
2018-09-16build: properly rebuild rust crates when their deps changeBert Belder
2018-09-16formatBert Belder
2018-09-16Remove remove_timer asserts (#760)Kevin (Kun) "Kassimo" Qian
* Remove remove_timer asserts * Add clearTimeout invalid id no-panic test * Move timer test to its file AND some lint side-effects
2018-09-16Fix comments in stat.ts fileJ2P
2018-09-16Improve integration of dom_typesKitson Kelly
2018-09-14Make fetch.blob() workParsa Ghadimi
2018-09-14[fs] Enable mode for `mkdir` on unix (#746)Kevin (Kun) "Kassimo" Qian
2018-09-14Rename fetch_types.d.ts to dom_types.d.tsParsa Ghadimi
2018-09-14Implement BlobParsa Ghadimi
2018-09-14fix command line flag in the commentjustjavac
2018-09-12feat: add deno.makeTempDirYoshiya Hinosawa
2018-09-12appveyor: verify that js/ts files are listed in BUILD.gnBert Belder
2018-09-12build: rebuild bundle when npm packages are added/removed/updatedBert Belder
2018-09-12v0.1.4Ryan Dahl
- Support headers in fetch() - Adds many async fs functions: deno.rename() deno.remove(), deno.removeAll(), deno.removeSync(), deno.removeAllSync(), deno.mkdir(), deno.stat(), deno.lstat() deno.readFile() and deno.writeFile(). - Add mode in FileInfo - Access error codes via error.kind - Check --allow-net permissions when using fetch() - Add deno --deps for listing deps of a script.
2018-09-12Small handers.rs cleanup (#735)JaePil Jung