summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-03-08Add basic Arm64 build to CI (#1887)andy finch
2019-03-08docs: package.ts -> deps.ts (#1903)Yoshiya Hinosawa
2019-03-07Remove 'deno' builtin module (#1895)Kitson Kelly
2019-03-07Upgrade deno_std to 395392 (#1902)Ryan Dahl
2019-03-07Cleanup node_modules, update packages (#1894)Kitson Kelly
And fix new lint issues.
2019-03-06v0.3.2Ryan Dahl
2019-03-06Upgrade deno_std (#1892)Ryan Dahl
A major API change was that asserts are imported from testing/asserts.ts now rather than testing/mod.ts and assertEqual as renamed to assertEquals to conform to what is most common in JavaScript.
2019-03-06Reorganize version and platform into Deno.build and Deno.version (#1879)Kevin (Kun) "Kassimo" Qian
2019-03-06Replace deno.land/x/std with deno.land/std (#1890)Andy Hayden
2019-03-05Fix website manual link (#1889)Grant Timmerman
2019-03-05fix snapshots in gn build (#1886)andy finch
Bug introduced in 75fe80d5a4992ddad89160c2e0113a1af8d3d24a
2019-03-04tools/run_node: only create 'node_modules' symlink onceBert Belder
Previously run_node.py would always attempt to remove and then re-create the 'target/xx/node_modules' symlink. This causes sporadic build errors on windows when multiple build targets that use run_node.py are being built concurrently.
2019-03-04tools: remove fix_symlinks() functionBert Belder
This fixes an issue on Windows that causes build to fails when fix_symlinks() is called concurrently with another build step. It is also no longer necessary, since recent versions of git know how to properly create symbolic links on checkout.
2019-03-04ci: upgrade git on appveyor to version v2.21.0.windows.1Bert Belder
2019-03-04Improve tagline in README (#1881)Ryan Dahl
2019-03-04`use-snapshots` build option for cross compile support. (#1852)andy finch
2019-03-04Allow inspection and revocation of permissions (#1875)Simon Menke
2019-03-03Removed comment from tslint.json (#1878)Lazarus Holl
2019-03-03libdeno: fix libdeno.print() unicode output on WindowsBert Belder
Note that emoji are still not supported, due limitations of the Windows console.
2019-03-03libdeno: remove `prints_newline` parameter from libdeno.print()Bert Belder
2019-03-03Add write permissions requirement to `op_fetch_module_meta_data`. (#1874)andy finch
2019-03-02Fix deno imports in manual (#1867)JaePil Jung
2019-03-02manual - import.meta.main (#1868)Bartek Iwańczuk
2019-03-02Fix example in manual (#1863)Ryan Dahl
2019-03-02compiler_bundle should also depend on gn_args.txt (#1870)Yoshiya Hinosawa
2019-03-01Add Deno.version.gnArgs (#1845)Yoshiya Hinosawa
To display specific build args passed to GN.
2019-03-01Permissions refactor (#1864)andy finch
Refactored permissions to be assignable on a per-isolate basis, and added a fix for #1858 to op_fetch_module_meta_data.
2019-03-01Add favicon.ico generated by deno_logo_3.svg and add link tag in every page ↵Jon Jee
(#1861)
2019-02-28Use deno_core::JSError in deno (#1855)Ryan Dahl
src/js_errors.rs takes care of source maps and color while core/js_errors.rs is just the basic struct.
2019-02-27v0.3.1Ryan Dahl
2019-02-27upgrade V8 to 7.4.238 (#1849)Ryan Dahl
2019-02-27Upgrade Node to v10 on Travis (#1850)Ryan Dahl
2019-02-27third_party: upgrade rust cratesBert Belder
2019-02-27Add NO_COLOR to CLI usage (#1843)Ryan Dahl
2019-02-27Use the SVG logo everywhere. Add logo links to manual. (#1841)Ryan Dahl
2019-02-26core: add Cargo.tomlBert Belder
This aids development using Visual Studio Code. The http_bench can't be built with cargo yet because it needs to link with libdeno.
2019-02-26deno_core (#1827)Ryan Dahl
A new low-level crate with focus on speed. This doesn't yet hook into the existing code base.
2019-02-26Add import.meta.main (#1835)Bartek Iwańczuk
2019-02-26Add "Dino in the Rain" to manual page (#1840)Kevin (Kun) "Kassimo" Qian
2019-02-26Updated some type assertions to work with other libc implementations. (#1837)andy finch
2019-02-26Fix broken link to API reference (#1838)William Fortin
Add missing trailing slash https://deno.land/typedoc/
2019-02-25Fix console.table display of Map and move tests to unit test (#1839)Kevin (Kun) "Kassimo" Qian
2019-02-25Upgrade deno_std (#1833)Ryan Dahl
2019-02-25Fix copyright header (#1832)Ryan Dahl
2019-02-21Improve readme (#1822)Ryan Dahl
2019-02-21manual: add Deno.run example (#1811)Bartek Iwańczuk
2019-02-20Add section explaining resources and metrics to the manual (#1819)EnokMan
2019-02-19Improve README (#1815)Ryan Dahl
2019-02-19fix: revert http server example on the homepage (#1814)Dmitry Teplov
2019-02-19remove global_eval.ts (#1813)Yoshiya Hinosawa