Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-09-20 | js: reschedule global timer if it fires earlier than expected (#2989) | Bert Belder | |
When the global timer fires earlier than expected, which apparently happens sometimes on server editions of Windows, we didn't call any setTimeout callbacks, but we *also* didn't reschedule the global timer to fire again later. When this situation occurred it would make deno exit abruptly if there were no other asynchronous ops running on the event loop. It could also lead to application hangs if the upcoming setTimeout callback was critical for the application to make progress. | |||
2019-09-20 | Fix handling of config file (#2996) | Yoshiya Hinosawa | |
2019-09-20 | change color of chart in dark mode (#2995) | YIPG | |
2019-09-19 | Set RUSTC_WRAPPERf in travis and appveyor (#2978) | Ryan Dahl | |
2019-09-19 | Remove test.py, use cargo test as test frontend (#2967) | Ryan Dahl | |
Fixes #2933 | |||
2019-09-19 | Make `window` compatible with ts 3.6 (#2984) | 迷渡 | |
2019-09-19 | fix spaces of indented in list (#2983) | 迷渡 | |
2019-09-19 | Clean up miscellaneous metafiles (#2981) | Bert Belder | |
The yarn.lock file is moved from //third_party to the root of the main repository. This is where other package metadata files (e.g. Cargo.lock and package.json) are also located. | |||
2019-09-18 | Utilise internal names for snapshot bundles (#2973) | Kitson Kelly | |
2019-09-18 | Run github actions on all pull requests (#2980) | Ryan Dahl | |
2019-09-18 | First pass at github actions (#2966) | Ryan Dahl | |
2019-09-18 | v0.18.0 (denoland/deno_std#600) | Ryan Dahl | |
Several tests were disabled in order to land this update. Original: https://github.com/denoland/deno_std/commit/a8f6cf7b4fa4030878bb702a65f28f469ee1f87d | |||
2019-09-18 | Add includeDirs to WalkOptions (denoland/deno_std#601) | Nayeem Rahman | |
Original: https://github.com/denoland/deno_std/commit/de8d0ab4a100707b57f12cff5db635356221f324 | |||
2019-09-17 | Run tools/sync_node_modules.py (#2972) | Ryan Dahl | |
2019-09-17 | Use shallow submodules, don't clone Typescript recursively | Bert Belder | |
2019-09-17 | Update to TypeScript 3.6.3 (#2969) | Kitson Kelly | |
2019-09-17 | Remove some non-standard web API constructors (#2970) | Nayeem Rahman | |
This removes the EventListener, EventInit and CustomEventInit constructors from the userland globals. The type exports stay. I removed the internal classes as well. EventListener's implementation seemed to be doing some bookkeeping on handled events but that's not being used anywhere so I assume it's old debug stuff. The other two are completely redundant. | |||
2019-09-16 | Move integration tests to //cli/tests/ (#2964) | Ryan Dahl | |
This ensures the deno executable is properly created before running the integration tests. Also allows deno_cli to be used as a lib. Docs are now properly generated: https://docs.rs/deno_cli/0.18.4/deno_cli/ Towards #2933 Prep for #2955 | |||
2019-09-16 | Fix and enable linting of deno_typescript/*, tools/*, website/* (#2962) | Bert Belder | |
2019-09-16 | remove zlib from gclient_config.py (#2961) | Christian Moritz | |
and remove DENO_NINJA_PATH from manual | |||
2019-09-16 | Use more ergonomic submodule names | Bert Belder | |
Change submodule names to match the name of the corresponding github repository, which is easier to remember than using the full path where the submodule is (or used to be) checked out. | |||
2019-09-15 | Make deno_cli installable via crates.io (#2946) | Ryan Dahl | |
- Fixes cargo publish on deno_typescript, deno_cli_snapshots, and deno_cli. - Combines cli_snapshots and js into one directory. - Extracts TS version at compile time rather than runtime - Bumps version awkwardly - it was necessary to test end-to-end publishing. Sorry. - Adds git submodule deno_typescript/typescript | |||
2019-09-15 | third_party: remove zlib | Bert Belder | |
2019-09-15 | Move GN root into //core/libdeno (#2943) | Christian Moritz | |
2019-09-15 | ci: fix Travis builds timing out because of no output (#2943) | Christian Moritz | |
2019-09-15 | ci: use Node.js v12 on Appveyor (#2943) | Christian Moritz | |
2019-09-15 | Rename ansi.rs to colors.rs (#2956) | Tomohito Nakayama | |
2019-09-15 | Run format.py (#2950) | Bert Belder | |
2019-09-15 | tools: remove unused function 'find_exts()' (#2950) | Bert Belder | |
2019-09-15 | tools: do not use 'find_exts()' in benchmarks.py (#2950) | Bert Belder | |
2019-09-15 | tools: refactor lint.py and format.py (#2950) | Bert Belder | |
2019-09-15 | tools: add 'shell' parameter to 'run()' (#2950) | Bert Belder | |
2019-09-15 | tools: clean up third_party.py, and merge prebuilt.py into it (#2950) | Bert Belder | |
* Remove reference to removed dir 'third_party/rust_crates'. * Remove reference to unused environment variable 'DENO_NINJA_PATH'. * Remove helper functions 'root()' and 'tp()'. * Move definition of 'third_party_path' to build.py. * Move definition of 'gn_exe()' to setup.py. * Move 'download_sccache()' and 'download_hyperfine()' from prebuilt.py to third_party.py, and delete prebuilt.py. * Add helper function 'get_platform_dir_name()' to locate the platform-specific 'v8/buildtools/<platform>' and 'prebuilt/<platform>' directories. * Add helper function 'get_prebuilt_tool_path()' that returns the full path to a platform-specific executable in //prebuilt. * Cosmetic improvements. | |||
2019-09-15 | tools: consistently use 'sys.executable' instead of 'python' (#2950) | Bert Belder | |
2019-09-15 | cli_snapshots: remove unused file run.py (#2950) | Bert Belder | |
2019-09-15 | Fix debug logging in runtime/compiler (#2953) | Kitson Kelly | |
2019-09-15 | Fix type directive parsing (#2954) | Kitson Kelly | |
2019-09-14 | feat: parallelize downloads from TS compiler (#2949) | Bartek Iwańczuk | |
2019-09-13 | v0.18.0 | Ryan Dahl | |
2019-09-13 | Fix tools/cargo_package.py (#2940) | Ryan Dahl | |
2019-09-13 | Remove old comment about gn build (#2944) | Ryan Dahl | |
2019-09-13 | Upgrade rust crates | Bert Belder | |
2019-09-13 | Remove 'integer-atomics' crate | Bert Belder | |
2019-09-12 | deno_typescript cleanup/improvements (#2901) | Kitson Kelly | |
2019-09-12 | feat: add bindings to run microtasks from Isolate (#2793) | Bartek Iwańczuk | |
2019-09-12 | Update README for integration tests (#2929) | Ryan Dahl | |
2019-09-12 | appveyor: download sccache before attempting to start it | Bert Belder | |
2019-09-12 | appveyor: do not explicitly configure GN/Ninja environment | Bert Belder | |
Users shouldn't have to do this manually, so we want to configure CI such that it fails if our build scripts don't set it up automatically. | |||
2019-09-12 | appveyor: upgrade git to v2.23.0 | Bert Belder | |
2019-09-12 | Keep all deno_std URLs in sync (#2930) | Ryan Dahl | |