Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-01-26 | fix(cli): fmt command help message (#9280) | akfm | |
2021-01-24 | fix(cli/flags): don't panic on invalid location scheme (#9202) | Nayeem Rahman | |
2021-01-19 | chore: add compile aarch64-apple-darwin target (#9174) | Luca Casonato | |
2021-01-19 | feat: add markdown support to deno fmt (#8887) | Satya Rohith | |
This commit adds support for formatting markdown files with "deno fmt". Additionally "--ext={js|jsx|ts|tsx|md}" flag was added to "deno fmt" that allows to specify file type when providing contents over stdio. | |||
2021-01-19 | fix: panic during `deno compile` with no args (#9167) | Luca Casonato | |
2021-01-19 | feat: Standalone lite binaries and cross compilation (#9141) | Bartek Iwańczuk | |
This commit adds --target and --lite flags to deno compile subcommand. --target allows to cross-compile binary to different target architectures by fetching appropriate binary from remote server on first run. All downloaded binaries are stored in "$DENO_DIR/dl". --lite allows to use lite version of the runtime (ie. the one that doesn't contain built-in tooling like formatter or linter). | |||
2021-01-17 | fix(op_crates/web): Use WorkerLocation for location in workers (#9084) | Nayeem Rahman | |
2021-01-11 | chore: update copyright to 2021 (#9092) | Yusuke Tanaka | |
2021-01-08 | feat: denort binary (#9041) | Luca Casonato | |
This commit adds new binary target called "denort". It is a "lite" version of "deno" binary that can only execute code embedded inside the binary itself. Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> | |||
2021-01-07 | feat: add --location=<href> and globalThis.location (#7369) | Nayeem Rahman | |
2021-01-05 | feat(cli/standalone): support runtime flags for deno compile (#8738) | Nayeem Rahman | |
2020-12-29 | refactor(cli/flags): change allow_read/write/net types from bool to ↵ | Yusuke Tanaka | |
Option<Vec<T>> (#8896) This PR refactors "cli/flags.rs" and "runtime/permissions.rs" so that "allow_read", "allow_write" and "allow_net" themselves have allowlists, instead of storing them in additional fields. | |||
2020-12-21 | feat(unstable): record raw coverage into a directory (#8642) | Casper Beyer | |
2020-12-14 | fix(cli): show canary string in long version (#8675) | crowlKats | |
2020-12-11 | refactor(cli): decouple ops from ProgramState and Flags (#8659) | Bartek Iwańczuk | |
This commit does major refactor of "Worker" and "WebWorker", in order to decouple them from "ProgramState" and "Flags". The main points of interest are "create_main_worker()" and "create_web_worker_callback()" functions which are responsible for creating "Worker" and "WebWorker" in CLI context. As a result it is now possible to factor out common "runtime" functionality into a separate crate. | |||
2020-12-11 | fix(cli): zsh completions (#8718) | crowlKats | |
2020-12-07 | chore(cli): unhide lsp command from CLI (#8647) | Bartek Iwańczuk | |
2020-12-07 | feat: add mvp language server (#8515) | Kitson Kelly | |
Resolves #8400 | |||
2020-12-06 | refactor(cli): remove Option from Flags.v8_flags (#8633) | crowlKats | |
2020-12-01 | chore(cli/flags): Use deno compile --output for the out file (#8563) | Nayeem Rahman | |
2020-11-30 | feat: deno compile (#8539) | Luca Casonato | |
2020-11-30 | fix(cli): support passing cli arguments under `deno eval` (#8547) | Kevin (Kun) "Kassimo" Qian | |
Fixes #8538 | |||
2020-11-29 | feat(cli/tools/upgrade): canary support (#8476) | crowlKats | |
2020-11-28 | chore: clippy future cleanups (#8514) | Kitson Kelly | |
2020-11-25 | add canary versioning (#8480) | crowlKats | |
2020-11-23 | Revert "docs(cli): Fix documentation about usage of deno completions … (#8468) | Bartek Iwańczuk | |
This reverts commit 17d4cd92133bb822ff3a4f2f5bb32dfd17f99282. | |||
2020-11-22 | feat(unstable): Support --watch flag for bundle and fmt subcommands (#8276) | Yusuke Tanaka | |
This commit adds support for "--watch" flag for "bundle" and "fmt" subcommands. In addition to this, it refactors "run --watch" command so that module resolution will occur every time the file watcher detects file addition/deletion, which allows the watcher to observe a file that is newly added to the dependency as well. | |||
2020-11-22 | docs(cli): Fix documentation about usage of deno completions script (#8369) | Mayank Agarwal | |
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> | |||
2020-11-22 | chore(cli/flags): Rename --failfast to --fail-fast (#8456) | Nayeem Rahman | |
2020-11-22 | feat(unstable): Add deno test --no-run (#8093) | Nayeem Rahman | |
This commit adds new flag to "deno test" subcommand called "--no-run" that allows to preload, cache an type check. | |||
2020-11-21 | fix(cli): support "deno run --v8-flags=--help" without script (#8110) | Max Drosdo.www | |
2020-11-13 | refactor(cli+core): various cleanups in Rust (#8336) | KNnut | |
2020-11-08 | upgrade: deno_doc, deno_lint, dprint, swc (#8292) | Bartek Iwańczuk | |
2020-11-02 | add commit hash and target to long_version output (#8133) | Yoshiya Hinosawa | |
2020-10-26 | Revert "feat(lint): stabilize "deno lint" subcommand (#8075)" (#8128) | Bartek Iwańczuk | |
This reverts commit c5c48f845a4d25f064c4388fcdd4295317edf155. | |||
2020-10-26 | feat(cli): pass script args for test command (#8121) | Ross Weir | |
Closes #8096 | |||
2020-10-23 | Revert "feat(cli): Add deno cache --test and --worker (#7920)" (#8089) | Bartek Iwańczuk | |
This reverts commit be15cf285dbf3a7b3025d34cb80e87e54a55dd93. | |||
2020-10-23 | feat(cli): Add deno cache --test and --worker (#7920) | Nayeem Rahman | |
2020-10-22 | feat(lint): stabilize "deno lint" subcommand (#8075) | Bartek Iwańczuk | |
This commit stabilizes "deno lint" by removing the need to pass --unstable flag. --unstable is still required when using --json flag. | |||
2020-10-22 | chores(cli/fmt): make --ignore stable (#7922) | Divy Srivastava | |
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> | |||
2020-10-21 | refactor(cli): use PathBuf instead of String for lint and fmt subcommands ↵ | Akshat Agarwal | |
(#8042) | |||
2020-10-20 | chore: Rename --importmap to --import-map (#7032) | Nayeem Rahman | |
--importmap still works as an alias to --import-map but is not visible in CLI help output. | |||
2020-10-20 | feat(cli): add support for bundle --no-check (#8023) | Kitson Kelly | |
Fixes #6686 | |||
2020-10-19 | feat(cli/installer): Add missing flags for deno install (#7601) | Nayeem Rahman | |
This commit adds support for following flags: - deno install --importmap - deno install --no-remote - deno install --lock - deno install --lock-write - deno install --cached-only - deno install --v8-flags - deno install --seed | |||
2020-10-12 | chore(cli): remove dead code (#7941) | Kitson Kelly | |
2020-10-12 | feat(cli): support importmap flag with deno doc subcommand (#7821) | Valentin Anger | |
Fixes #7783 | |||
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-09-28 | fix(cli/test): do not start inspector server when collecting coverage (#7718) | Casper Beyer | |
2020-09-21 | fix(info): add --importmap flag (#7424) | William Perron | |
2020-09-21 | fix: make --watch and --inspect conflicting args (#7610) | Luca Casonato | |