Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-09-12 | chore: remove --no-check from deno info (#7439) | Luca Casonato | |
2020-09-12 | chore: add systemMemoryInfo unstable diagnostic (#7435) | Luca Casonato | |
2020-09-12 | Revert "feat(unstable): Support data: urls (#5157)" (#7432) | Bartek Iwańczuk | |
This reverts commit e3319f34a6ece36eab3138eae83c8d0e18fcc07c. | |||
2020-09-11 | feat(unstable): Support data: urls (#5157) | Valentin Anger | |
2020-09-11 | feat(unstable): deno run --watch (#7382) | Bartek Iwańczuk | |
Co-authored-by: Sebastian Seedorf <mail@sebse.de> | |||
2020-09-09 | feat(fmt, lint): show number of checked files (#7312) | Yusuke Tanaka | |
2020-09-09 | fix(op_crates/web): Use "deno:" URLs for internal script specifiers (#7383) | Nayeem Rahman | |
2020-09-07 | feat(info): Dependency count and sizes (#6786) | KrisChambers | |
This commit changes "deno info" subcommand logic. - Modules are no longer loaded into V8 isolate - analysis is done using ModuleGraph. - Removed deno_core::Deps structure. - Modules are no longer type-checked and transpiled - "compiled" file is shown only if it is already available. - Added number of unique dependencies for root module. - Changed tree output: - file size is shown next to the dependency - repeated dependencies are marked with "*" - used less spaces in prefix to save terminal width | |||
2020-09-05 | feat: Implement WebSocket API (#7051) | crowlKats | |
2020-09-03 | support env_logger / RUST_LOG (#7142) | tokiedokie | |
2020-09-02 | Remove unnecessary stdout pipes in tests (#7322) | Ryan Dahl | |
2020-08-31 | feat(lint): Add support for reading input from stdin (#7263) | Yusuke Tanaka | |
2020-08-28 | Move benchmarks to Rust (#7134) | Valentin Anger | |
All benchmarks are done in Rust and can be invoked with `cargo bench`. Currently this has it's own "harness" that behaves like `./tools/benchmark.py` did. Because of this tests inside `cli/bench` are currently not run. This should be switched to the language provided harness once the `#[bench]` attribute has been stabilized. | |||
2020-08-26 | fix(cli): revert "never type check deno info #6978" (#7199) | Luca Casonato | |
2020-08-23 | fix(doc): stack overflow for .d.ts files (#7167) | Bartek Iwańczuk | |
2020-08-18 | refactor: permissions (#7074) | Nayeem Rahman | |
2020-08-18 | Fix nightly and Windows-only clippy warnings (#7095) | Bert Belder | |
2020-08-14 | Enable WebAssembly.instantiateStreaming (#7043) | Casper Beyer | |
2020-08-13 | feat: Add "--json" flag to deno lint (#6940) | souldzin | |
Co-authored-by: JackSkylark <jdslaughter44@gmail.com> | |||
2020-08-12 | feat: add "--ignore" to deno lint (#6934) | Divy Srivastava | |
2020-08-10 | Remove unnecessary drop calls (#7007) | Ryan Dahl | |
2020-08-10 | feat: Stabilize Deno.mainModule (#6993) | Nayeem Rahman | |
2020-08-08 | test(cli/inspector_port_collision): skip test on WSL (#6991) | Bert Belder | |
2020-08-08 | test(cli/inspector_port_collision): fail rather than hang (#6991) | Bert Belder | |
2020-08-08 | fix(cli): show error on unrecognized V8 flag, exit on --help (#6980) | Bert Belder | |
2020-08-07 | fix(deno info): Never type check (#6978) | Nayeem Rahman | |
2020-08-03 | feat: hash file names in gen cache (#6911) | Luca Casonato | |
2020-07-30 | feat(unstable): add "--ignore" flag to deno fmt (#6890) | Divy Srivastava | |
2020-07-24 | fix: deno-types directive should have higher precedence than ↵ | Bartek Iwańczuk | |
X-TypeScript-Types header (#6761) | |||
2020-07-23 | refactor: remove more compiler runtime code (#6841) | Bartek Iwańczuk | |
2020-07-19 | Port internal TS code to JS (#6793) | Bartek Iwańczuk | |
Co-authored-by: Ryan Dahl <ry@tinyclouds.org> | |||
2020-07-17 | fix: providing empty source code for missing compiled files (#6760) | Bartek Iwańczuk | |
This commit adds a fallback mechanism for absent compiled source file. Because imported type declaration files are not emitted by TS compiler and their imports are not elided users often hit "No such file or directory" error. With this commit in such situation an empty source file will be provided to V8 with a warning to the user suggesting using "import type"/ "export type" syntax instead. | |||
2020-07-15 | fix: panic for runtime error in TS compiler (#6758) | Bartek Iwańczuk | |
2020-07-14 | Use dprint for internal formatting (#6682) | David Sherret | |
2020-07-13 | fix(cli): don't panic when no "HOME" env var is set (#6728) | Maayan Hanin | |
2020-07-13 | fix(Deno.ppid): improve error message when --unstable is missing (#6717) | uki00a | |
2020-07-12 | feat(cli): add DENO_CERT environment variable (#6370) | Oscar Linde | |
2020-07-11 | chore: reenable ignored integration tests (#6703) | Bartek Iwańczuk | |
2020-07-09 | fix(cli): panic when stdio is null on windows (#6528) | Maayan Hanin | |
Fixes: #6409 | |||
2020-07-08 | feat(cli): json option for "deno info" (#6372) | Emmanuel | |
2020-07-08 | feat: add --no-check option (#6456) | Kitson Kelly | |
This commit adds a "--no-check" option to following subcommands: - "deno cache" - "deno info" - "deno run" - "deno test" The "--no-check" options allows to skip type checking step and instead directly transpiles TS sources to JS sources. This solution uses `ts.transpileModule()` API and is just an interim solution before implementing it fully in Rust. | |||
2020-07-07 | feat: add lockfile support to bundle (#6624) | Takahiko Inayama | |
2020-07-06 | fix: Deno.setRaw shouldn't panic on ENOTTY (#6630) | uki00a | |
2020-07-06 | feat: deno upgrade --output (#6352) | crowlKats | |
2020-07-05 | chore: re-enable tests using media_types (#6642) | Bartek Iwańczuk | |
2020-07-04 | chore: port http_server.py to rust (#6364) | Ryan Dahl | |
2020-07-02 | refactor: lock file (#6569) | Bartek Iwańczuk | |
- refactor lock file creation - provide deterministic output in lock file (alphabetically sorted) - dynamic imports are checked against lock file | |||
2020-06-29 | fix(cli/upgrade): upgrade fails on Windows with space in temp path (#6522) | Andrey Filatkin | |
2020-06-26 | 'Compile' messages changed to 'Check' messages (#6504) | Ryan Dahl | |
2020-06-26 | fix: Omit buildinfo when --reload passed (#6489) | Kitson Kelly | |