Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-10-16 | Fix tools/docs.py (#3135) | Ryan Dahl | |
2019-10-16 | fix: remote jsx/tsx files were compiled as js/ts (#3125) | Yusuke Sakurai | |
2019-10-16 | std/flags: Add test for multiple boolean flags (#3103) | 迷渡 | |
2019-10-15 | Use max-width over max-device-width (#3132) | Jon Heslop | |
Using max-width because this applies the mobile styles to narrow windows on larger devices as well as full with windows on narrow devices. | |||
2019-10-15 | perf: fairer ops scheduling (#3128) | Bartek Iwańczuk | |
2019-10-15 | Add debug build to github actions | Ryan Dahl | |
This disabled the tty_tests which seem to be very flaky with the debug build. | |||
2019-10-15 | Upgrade V8 to 7.9.304 | Ryan Dahl | |
2019-10-14 | perf: eager poll async ops in Isolate (#3046) | Bartek Iwańczuk | |
2019-10-13 | fix: [tls] op_dial_tls is not registerd and broken (#3121) | Yusuke Sakurai | |
2019-10-12 | support --allow-net=:4500 (#3115) | Bartek Iwańczuk | |
2019-10-12 | fix: [prettier] deno fmt should format jsx/tsx files (#3118) | Yusuke Sakurai | |
2019-10-12 | Update various links to deno_std (#3096) | Ryan Dahl | |
2019-10-11 | Add init methods for each op module (#3087) | Ryan Dahl | |
2019-10-11 | Ensure DENO_DIR when saving the REPL history (#3106) | Nayeem Rahman | |
2019-10-11 | update prettier type definition (#3101) | 罗文 | |
2019-10-10 | Merge deno_std in main repo (#3091) | Ryan Dahl | |
The history of deno_std is persevered but rewritten to update links to issues and PRs Fixes denoland/deno_std#603 | |||
2019-10-09 | Run deno_std tests in github actions | Ryan Dahl | |
2019-10-09 | Merge branch 'std_modified' into merge_std3 | Ryan Dahl | |
2019-10-09 | remove std submodule | Ryan Dahl | |
2019-10-09 | Move everything into std subdir | Ryan Dahl | |
2019-10-08 | ci: bump deno to v0.20.0 (denoland/deno_std#627) | Bert Belder | |
Original: https://github.com/denoland/deno_std/commit/98784c305c653b1c507b4b25be82ecf40f188305 | |||
2019-10-07 | Fix some examples in the manual (#3084) | Ryan Dahl | |
2019-10-07 | fix: Update echo_server to new listen API (denoland/deno_std#625) | Bartek Iwańczuk | |
Original: https://github.com/denoland/deno_std/commit/287fbb5deca0017202cffef42c97aeee99ef7bee | |||
2019-10-07 | v0.20.0 | Ryan Dahl | |
2019-10-07 | use single thread runime in tokio_util::block_on (#3080) | Bartek Iwańczuk | |
2019-10-06 | remove more calls to tokio_util::block_on (#3059) | Bartek Iwańczuk | |
towards #2960 | |||
2019-10-06 | refactor benchmark results posting (#3076) | Christian Moritz | |
2019-10-06 | Upgrade V8 to 7.9.218 (#3067) | Ryan Dahl | |
2019-10-05 | remove appveyor specific code paths (#3071) | Christian Moritz | |
2019-10-05 | Update eslint and @typescript-eslint (denoland/deno_std#621) | Yoshiya Hinosawa | |
Original: https://github.com/denoland/deno_std/commit/c3fe858f98565edbe8faeb3cf2e5b873304f4f6e | |||
2019-10-05 | CI: don't build while linting and publish in forks (#3070) | Christian Moritz | |
2019-10-05 | merge build.yml and lint.yml (#3066) | Ryan Riginding | |
Fixes #3063 | |||
2019-10-04 | Merge deno_cli_snapshots into deno_cli (#3064) | Ryan Dahl | |
2019-10-04 | add timeout to CI (#3061) | Bartek Iwańczuk | |
2019-10-04 | Move deno_std to a more convenient location. (#3057) | Ryan Dahl | |
js/deps/https/deno.land/std -> js/std | |||
2019-10-04 | Use xeval from deno_std (#3058) | Nayeem Rahman | |
2019-10-03 | Fix iterators on UrlSearchParams (#3044) | Kitson Kelly | |
2019-10-03 | Remove travis and appveyor. Release with github actions (#3052) | Ryan Dahl | |
Fixes #2979 | |||
2019-10-03 | Use github action badges (#3056) | Ryan Dahl | |
2019-10-03 | Update rust to 1.38.0 (#3030) | Andy Hayden | |
2019-10-03 | Upgrade sccache binaries to 0.2.11 (#3051) | Ryan Dahl | |
2019-10-03 | Async compiler processing (#3043) | Kitson Kelly | |
Basically this does pre-processing of TypeScript files and gathers all the dependencies asynchronously. Only then after all the dependencies are gathered, does it do a compile, which at that point all the dependencies are cached in memory in the compiler, so with the exception of the hard coded assets, there are no ops during the compilation. Because op_fetch_source_files is now handled asynchronously in the runtime, we can eliminate the tokio_util::block_on() which was causing the increase in threads. Benchmarking on my machine has shown about a 5% improvement in speed when dealing with compiling TypeScript. Still a long way to go, but an improvement. In theory the module name resolution and the fetching of the source files could be broken out as two different ops. This would prevent situations of sending the full source file all the time when actually the module is the same module referenced by multiple modules, but that could be done subsequently to this. | |||
2019-10-03 | Fix deno_typescript repository url in Cargo.toml (#3053) | JaePil Jung | |
2019-10-02 | fix typo in deno_typescript readme (#3048) | Tyr Chen | |
2019-10-02 | Run benchmarks from GH actions instead of Travis (#3049) | Ryan Dahl | |
2019-10-02 | Implement expandGlob() and expandGlobSync() (denoland/deno_std#617) | Nayeem Rahman | |
fs/glob.ts: - Improve prototypes for expandGlob() and expandGlobSync() from denoland/deno_std#604. - Rename glob() to globToRegExp(). - Add normalizeGlob() and joinGlobs(). - Extract GlobToRegExpOptions from GlobOptions, remove the strict and filepath options. fs/globrex.ts: - Add GlobrexOptions. fs/path/constants.ts: - Add SEP_PATTERN. fs/walk.ts: - Add WalkOptions::includeFiles - Default WalkOptions::includeDirs to true. - Don't traverse directories matching a skip pattern. - Remove walkSync()'s default root value. prettier: - Refactor to use expandGlob(). testing: - Make findTestModules() an async generator. Original: https://github.com/denoland/deno_std/commit/8c90bd9d0b1c78b023d36462ffaa9446ef22490c | |||
2019-10-02 | remove legacy Isolate.set_dispatch API (#3041) | Bartek Iwańczuk | |
* migrate deno_typescript crate to Isolate.register_op API * remove dual-dispatch mechanism * update Isolate tests to new dispatch mechanism | |||
2019-10-02 | feat: Add support for passing a key to Deno.env() (#2952) | Jed Fox | |
This adds a new op to get a single env var. | |||
2019-10-02 | feat: window.onunload (#3023) | Bartek Iwańczuk | |
2019-10-02 | feat: JSX Support (#3038) | Yusuke Sakurai | |