Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-09-12 | chore: remove --no-check from deno info (#7439) | Luca Casonato | |
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-06 | Move JSON ops to deno_core (#7336) | Bert Belder | |
2020-09-02 | fix(docs): replace "eslint-ignore-" with "eslint-disable-" (#7319) | YellowBird | |
2020-08-31 | feat(lint): Add support for reading input from stdin (#7263) | Yusuke Tanaka | |
2020-08-28 | test(cli/flags): restore disabled test cases (#7236) | Yoshiya Hinosawa | |
2020-08-27 | fix(deno install): Strip "@..." suffixes from inferred names (#7223) | Nayeem Rahman | |
2020-08-26 | fix(cli): revert "never type check deno info #6978" (#7199) | Luca Casonato | |
2020-08-15 | fix: add `NO_PROXY` to `deno help` and add test (#7048) | Tomofumi Chiba | |
2020-08-14 | fix: Dash Value Treated As Arg (#7039) | Jarrett Helton | |
2020-08-13 | feat: Add "--json" flag to deno lint (#6940) | souldzin | |
Co-authored-by: JackSkylark <jdslaughter44@gmail.com> | |||
2020-08-12 | feat: add support for --no-check flag in Deno install (#6948) | Jarrett Helton | |
2020-08-12 | feat(bundle): add support for --reload flag (#6996) | Jarrett Helton | |
2020-08-12 | feat: add "--ignore" to deno lint (#6934) | Divy Srivastava | |
2020-08-12 | feat: deno info --reload (#7009) | Nayeem Rahman | |
2020-08-07 | fix(deno info): Never type check (#6978) | Nayeem Rahman | |
2020-07-30 | feat(unstable): add "--ignore" flag to deno fmt (#6890) | Divy Srivastava | |
2020-07-12 | feat(cli): add DENO_CERT environment variable (#6370) | Oscar Linde | |
2020-07-12 | feat(install): add --config flag (#6204) | simwipado | |
This commits adds support for "--config" flag in "deno install" subcommand. Specified configuration file is copied alongside source code to installation directory. | |||
2020-07-12 | feat(doc): Improve terminal printer (#6594) | Valentin Anger | |
- Add more support for generics - Add the --private flag - displays documentation for not exported and private nodes - Display more attributes like abstract, static and readonly - Display type aliases - Refactor module to use the Display trait - Use a bit more color | |||
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(test): Add support for regex in filter flag (#6343) | Sebastien Filion | |
Currently, the documentation makes it sound like the test subcommand's filter flag could accept some kind of pattern matching value like a glob or a regex, although the function "createFilterFn" accepts a regex as an argument, there's no way to pass an actual regex value from the CLI. This commit makes it possible to pass a string that could be cast as regex when string matches "^/.*/$". With this change, a user can use the filter flag as follow: deno test --filter "/test-.+/" Also tested that `\` get escaped properly, on MacOS at least, and this is also a valid flag: deno test --filter "/test-\d+/" | |||
2020-07-07 | feat: add lockfile support to bundle (#6624) | Takahiko Inayama | |
2020-07-06 | feat: deno upgrade --output (#6352) | crowlKats | |
2020-07-05 | feat(cli): Added support for the --cert flag with 'deno upgrade' (#6609) | Jacob Gee-Clarke | |
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-26 | Re-land "fix(cli): ipv6 parsing for --allow-net params" (#6472) | Bartek Iwańczuk | |
With some minor adjustments | |||
2020-06-25 | Revert "fix(cli): ipv6 parsing for --allow-net params (#6453)" (#6458) | Bartek Iwańczuk | |
2020-06-24 | fix(cli): ipv6 parsing for --allow-net params (#6453) | Colin Harrington | |
Co-authored-by: Liming Jin <jinliming2@gmail.com> | |||
2020-06-18 | docs: Update standard library and testing manual pages (#6323) | Chris Knight | |
2020-06-15 | Fix DENO_DIR docs (#6271) | Ryan Dahl | |
2020-06-13 | Move to allowlist and blocklist (#6282) | Luca Casonato | |
2020-06-12 | document "deno run -" (#6256) | Jaap Aarts | |
2020-06-12 | feat(lint): add --rules flag (#6264) | Bartek Iwańczuk | |
2020-06-12 | docs(lint): add entry in manual (#6258) | Bartek Iwańczuk | |
2020-06-10 | feat(lint): use default globs, upgrade to v0.1.9 (#6222) | Bartek Iwańczuk | |
This commit: * added default file globs so "deno lint" can be run without arguments (just like "deno fmt") * added test for globs in "deno lint" * upgrade "deno_lint" crate to v0.1.9 | |||
2020-06-09 | upgrade: deno_lint v0.1.8 (#6208) | Bartek Iwańczuk | |
2020-06-08 | Adjusting the HTTPS_PROXY flag text (#6103) | Faycel | |
2020-06-08 | feat: "deno lint" subcommand (#6125) | Bartek Iwańczuk | |
2020-06-06 | feat: deno eval -p (#5682) | Ryan Dahl | |
2020-06-05 | deno test should run mjs files (#6122) | Taisuke Fukuno | |
2020-05-29 | fix(cli/permissions): Fix CWD and exec path leaks (#5642) | Nayeem Rahman | |
2020-05-21 | docs: fix test glob pattern (#5661) | Maple Miao | |
2020-05-17 | Miscellaneous documentation and spelling improvements (#5527) | Bert Belder | |
* Extended/updated documentation on code editor setup and plugins. * Moved documentation to the right file. * Fixed spelling errors in documentation and code. * Updated broken links. Co-authored-by: 迷渡 <justjavac@gmail.com> Co-authored-by: AlfieriChou <alfierichou@gmail.com> Co-authored-by: Anil Seervi <anil13112000@gmail.com Co-authored-by: Bert Belder <bertbelder@gmail.com> Co-authored-by: Fernando Basso <fernandobasso.br@gmail.com> Co-authored-by: József Sallai <jozsef@sallai.me> Co-authored-by: S4ltyGo4t <mario.weidner@gmx.de> Co-authored-by: Tommy May <tommymay37@gmail.com> Co-authored-by: Turbinya <wownucleos@gmail.com> Co-authored-by: ᴜɴвʏтᴇ <i@shangyes.net> | |||
2020-05-16 | fix some unwrap() in Rust (#5485) | Yiyu Lin | |
2020-05-10 | fix: remove default --allow-read perm for deno test (#5208) | Bartek Iwańczuk | |
2020-05-09 | feat(upgrade): allow specifying a version (#5156) | crowlKats | |
2020-05-07 | feat(bundle): add --config flag (#5130) | Bartek Iwańczuk | |