Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-10-02 | chore(core): remove experimental wasm bigint flag (#7790) | Casper Beyer | |
This removes the experimental bigint flag as it is enabled by default now and is no longer necessary. | |||
2020-10-02 | refactor: use parentheses in print statements in python (#7779) | j4qfrost | |
2020-10-02 | refactor(repl): use an inspector session (#7763) | Casper Beyer | |
This ports the REPL over to Rust and makes use of an inspector session to run a REPL on top of any isolate which lets make full use of rustylines various things like validators and completors without having to introduce a bunch of hard to test internal ops and glue code. An accidental but good side effect of this is that the multiple line input we previously had is now an editable multi-line input prompt that is correctly stored in the history as a single entry. | |||
2020-10-01 | refactor(std/testing): Get rid of default export and make ↵ | tokiedokie | |
std/testing/diff.ts private (#7592) | |||
2020-10-01 | refactor: add concept of 'legacy' compiler to enable non-breaking ↵ | Kitson Kelly | |
refactoring (#7762) | |||
2020-10-01 | chore: ensure cache is 'valid' during benchmarks (#7770) | Kitson Kelly | |
2020-10-01 | docs(std/uuid): Added JSdocs for the std/uuid module (#7735) | aakhtar3 | |
2020-10-01 | feat(std/path): Align globToRegExp() with bash glob expansion (#7209) | Nayeem Rahman | |
- feat: Support escaping glob characters - feat: Support more character classes - feat: Match characters literally on segment parse failure - fix: Match nothing for empty globs - fix: Contain any glob syntax to its path segment - perf: Remove extraneous separators from generated regex - doc: Add detailed JSDoc - chore: Remove old copyright headers | |||
2020-10-01 | fix(cli/console): Catch and format getter errors (#7766) | Nayeem Rahman | |
2020-09-30 | refactor: improve op crate interfaces for other consumers (#7745) | Bartek Iwańczuk | |
2020-09-30 | fix: check cached versions during transpile (#7760) | Kitson Kelly | |
Fixes: #7759 | |||
2020-09-30 | fix: bundle loader returns exported value (#7764) | Kitson Kelly | |
Fixes: #7761 | |||
2020-09-30 | fix(cli): use global_state file_fetcher when using SpecifierHandler (#7748) | Kitson Kelly | |
Fixes: #7709 | |||
2020-09-30 | feat(cli/console): Add Deno.InspectOptions::colors (#7742) | Nayeem Rahman | |
Ref: https://github.com/denoland/deno/pull/7516#pullrequestreview-489567120 | |||
2020-09-29 | refactor(cli): extract inspector session (#7756) | Casper Beyer | |
This extracts the inspector session specific bits from CoverageCollector into a standalone struct dubbed `InspectorSesssion` which can be used as a general purpose session to communicate with the inspector on the same thread as an isolate/inspector pair lives on. | |||
2020-09-29 | improve readme (#7530) | Vitor Matos | |
2020-09-29 | fix(websocket): add missing close events and remove extra error event (#7606) | crowlKats | |
2020-09-29 | chore(std/wasi): enable and fix lint errors in snapshot_preview1 (#7360) | Casper Beyer | |
2020-09-29 | refactor: improve graph and tsc_config (#7747) | Kitson Kelly | |
2020-09-29 | chore(cli/coverage): remove unused runtime domain (#7749) | Casper Beyer | |
Previously when we used the websocket to talk to the inspector we used the runtime domain to send a "runIfWaitingForDebugger" message. However this is not required since we now talk to the inspector directly and no longer send said message so this removes the enabling of the domain entirely. | |||
2020-09-28 | fix(cli/test): do not start inspector server when collecting coverage (#7718) | Casper Beyer | |
2020-09-28 | refactor: move op state registration to workers (#7696) | Bartek Iwańczuk | |
2020-09-28 | docs: end sentences with a period in docs (#7730) | Trivikram Kamat | |
2020-09-28 | docs: use const assertion for PermissionDescriptor (#7733) | Trivikram Kamat | |
Fixes #7731 | |||
2020-09-28 | docs: update deno bundle output to single line (#7734) | Trivikram Kamat | |
2020-09-27 | build: use non xl runners outside deno repo (#7729) | Luca Casonato | |
2020-09-27 | feat(unstable): add module specifier to deno info --json output (#7725) | Valentin Anger | |
2020-09-27 | fix: Use $deno$test.ts instead of .deno.test.ts (#7717) | Nayeem Rahman | |
2020-09-27 | BREAKING(std/encoding/csv): improve the definition of ParseOptions (#7714) | uki00a | |
2020-09-27 | fix(cli/inspector): shutdown server gracefully on drop (#7716) | Casper Beyer | |
2020-09-27 | fix: no check recognizes require (#7720) | Luca Casonato | |
2020-09-27 | doc: use APA citation style for listing conference talks (#7721) | Trivikram Kamat | |
2020-09-27 | doc: end sentences with a period in examples (#7722) | Trivikram Kamat | |
2020-09-27 | fix: net listen crashes on explicit undefined hostname (#7706) | Giorgi Rostomashvili | |
2020-09-27 | feat(fmt): Sort named import and export specifiers (#7711) | David Sherret | |
2020-09-27 | docs: update GitHub doc links to use $CLI_VERSION (#7710) | Trivikram Kamat | |
2020-09-27 | docs: use $STD_VERSION in std lib import comment (#7707) | Trivikram Kamat | |
2020-09-27 | docs: update --unstable flag forget message (#7708) | Trivikram Kamat | |
2020-09-27 | docs(cli): Update web assembly example and accepted compiler options in ↵ | Search | |
docs. (#7678) Fixes #7556 Fixes #7634 | |||
2020-09-26 | docs: add jsdoc for WebAssembly namespace (#7703) | Luca Casonato | |
2020-09-26 | refactor: factor out check_unstable op helper (#7695) | Bartek Iwańczuk | |
2020-09-26 | refactor: combine MainWorker::new and MainWorker::create (#7693) | Bartek Iwańczuk | |
* combine MainWorker::new and MainWorker::create * remove compiler_starts fields * make op_state types explicit for readability | |||
2020-09-26 | refactor(std/example): Inconsistencies in the example tests (#7684) | tokiedokie | |
2020-09-26 | refactor: use JsRuntime to implement TSC (#7691) | Bartek Iwańczuk | |
This commits removes "CompilerWorker" in favor of using "JsRuntime". "cli/ops/compiler.rs" has been removed in favor of inline registration of ops in "cli/tsc.rs" | |||
2020-09-26 | Fix typos (#7687) | KNnut | |
2020-09-26 | simply github actions yaml (#7688) | Kang Huaishuai | |
use strategy->matrix->include | |||
2020-09-26 | refactor: prune unneeded JS code (#7689) | Bartek Iwańczuk | |
2020-09-26 | docs(std): add async and signal readme (#7683) | Andrew Mitchell | |
Resolves #7608 | |||
2020-09-26 | fix(cli/dts): Use var instead of const and let for globals (#7680) | Nayeem Rahman | |
2020-09-25 | test(std/async): remove redundant export in test (#7682) | Casper Beyer | |