Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-07-24 | v1.2.1 | Ryan Dahl | |
2020-07-23 | Align cargo dependency features (#6860) | Ryan Dahl | |
2020-07-23 | upgrade: tokio 0.2.22 (#6838) | Bartek Iwańczuk | |
2020-07-22 | Reduce size of TypeScript Compiler snapshot (#6809) | Ryan Dahl | |
This PR is intentionally ugly. It duplicates all of the code in cli/js2/ into cli/tsc/ ... because it's very important that we all understand that this code is unnecessarily duplicated in our binary. I hope this ugliness provides the motivation to clean it up. The typescript git submodule is removed, because it's a very large repo and contains all sorts of stuff we don't need. Instead the necessary files are copied directly into the deno repo. Hence +200k lines. COMPILER_SNAPSHOT.bin size ``` master 3448139 this branch 3320972 ``` Fixes #6812 | |||
2020-07-20 | Remove deno_typescript (#6813) | Ryan Dahl | |
2020-07-15 | fix(cli): add icon and metadata to deno.exe on Windows (#6693) | Maayan Hanin | |
Co-authored-by: Mark Tiedemann <www.marktiedemann@gmail.com> Co-authored-by: Luca Casonato <lucacasonato@yahoo.com> Co-authored-by: Bert Belder <bertbelder@gmail.com> | |||
2020-07-13 | v1.2.0 | Bartek Iwańczuk | |
2020-07-11 | chore: upgrade deno_lint, remove direct dprint dep (#6679) | Bartek Iwańczuk | |
This PR removes direct dependency on dprint-plugin-typescript and swc_ecma_visit. Both of these dependencies have been pushed out to deno_lint crate. This should make it a bit easier to do the upgrades and prevent having conflicting crate requirements. | |||
2020-07-10 | fix(URL): Implement spec-compliant host parsing (#6689) | Nayeem Rahman | |
2020-07-08 | feat(unstable): Deno.ppid (#6539) | uki00a | |
2020-07-06 | chore: Only use one set of tokio features (#6655) | Ryan Dahl | |
2020-07-03 | v1.1.3 | Bartek Iwańczuk | |
2020-07-03 | upgrade: dprint-typescript-plugin 0.19.5, deno_lint 0.1.15 (#6614) | Bartek Iwańczuk | |
2020-07-01 | upgrade: swc_ecma_visit, dprint, deno_lint (#6580) | Bartek Iwańczuk | |
2020-06-27 | Update to dprint-plugin-typescript 0.19.3 (#6527) | David Sherret | |
2020-06-26 | v1.1.2 | Bartek Iwańczuk | |
2020-06-20 | Remove Deno.dir and dirs dependency (#6385) | Ryan Dahl | |
2020-06-19 | v1.1.1 | Ryan Dahl | |
2020-06-19 | upgrade crates (#6378) | Ryan Dahl | |
2020-06-18 | chore(test): move testing utilities to test_util crate (#6360) | Bartek Iwańczuk | |
2020-06-16 | chore: remove glob dependency (#6317) | Bartek Iwańczuk | |
2020-06-12 | v1.1.0 | Bartek Iwańczuk | |
2020-06-12 | update: deno_lint to v0.1.10 (#6248) | Bartek Iwańczuk | |
* update: deno lint to v0.1.10 * Parallelize "deno lint" subcommand | |||
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 | feat: "deno lint" subcommand (#6125) | Bartek Iwańczuk | |
2020-06-06 | Add diff for "deno fmt --check" (#5599) | Filippo Rossi | |
2020-06-03 | Upgrade to swc_ecma_parser 0.24.5 (#6077) | David Sherret | |
2020-06-03 | v1.0.5 | Ryan Dahl | |
2020-06-03 | Update to dprint 0.19.1 and swc_ecma_parser 0.24.3 (#6068) | David Sherret | |
2020-06-02 | v1.0.4 | Bartek Iwańczuk | |
2020-06-01 | upgrade: crates (#6032) | Ryan Dahl | |
2020-05-30 | upgrade: Rust crates (#5959) | Ryan Dahl | |
2020-05-29 | v1.0.3 | Bartek Iwańczuk | |
2020-05-27 | upgrade: dprint to 0.19.0 (#5899) | Bartek Iwańczuk | |
2020-05-22 | v1.0.2 | Bartek Iwańczuk | |
2020-05-21 | fix(fmt): Do not panic on new expr with no parens. (#5734) | David Sherret | |
Closes #5567 | |||
2020-05-20 | v1.0.1 | Ryan Dahl | |
2020-05-20 | Update dprint 0.18.4 (#5671) | David Sherret | |
Fixes trailing comma issue | |||
2020-05-17 | Update to dprint 0.18.3 and the latest version of swc (#5509) | David Sherret | |
2020-05-13 | v1.0.0 | Bartek Iwańczuk | |
2020-05-12 | v1.0.0-rc3 | Bartek Iwańczuk | |
2020-05-11 | BREAKING: There is no public Rust API for the CLI (#5226) | Ryan Dahl | |
2020-05-10 | Update to dprint 0.17.2 (#5195) | David Sherret | |
2020-05-09 | 1.0.0-rc2 | Bartek Iwańczuk | |
2020-05-06 | Upgrade crates (#5104) | Ryan Dahl | |
2020-05-04 | v1.0.0-rc1 | Ryan Dahl | |
2020-05-04 | feat(fmt): Add `deno-fmt-ignore` and `deno-fmt-ignore-file` comment support ↵ | David Sherret | |
(#5075) | |||
2020-04-30 | fix(fmt): Format `abstract async` as `abstract async` (#5020) | David Sherret | |
2020-04-30 | feat: add SWC dependency analyzer (#5015) | Bartek Iwańczuk | |
This commit adds "analyze_dependencies" function that uses SWC (by the means of AstParser) to perform analysis of static and dynamic imports. |