summaryrefslogtreecommitdiff
path: root/cli/doc
AgeCommit message (Collapse)Author
2020-08-19refactor: move cli/doc/ to separate crate (#7103)Bartek Iwańczuk
2020-08-18refactor(doc): add helper functions for DocNode (#7083)Bartek Iwańczuk
2020-08-11doc: Remove detailed / summary distinction (#6818)Valentin Anger
2020-08-10feat(doc): handle imports (#6987)Bartek Iwańczuk
This commit adds additional objects to JSON output of "deno doc" command to facilitate linking between types in different modules.
2020-07-31upgrade: deno_lint, dprint, swc (#6928)Bartek Iwańczuk
This commit upgrades: deno_lint 0.1.20 dprint-plugin-typescript 0.25.0 swc_ecmascript 0.1.0 SWC is no longer reexported from dprint nor deno_lint.
2020-07-28fix: downcast from SwcDiagnosticBuffer to OpError (#6909)Bartek Iwańczuk
2020-07-12feat(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-11chore: 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-01upgrade: swc_ecma_visit, dprint, deno_lint (#6580)Bartek Iwańczuk
2020-06-29refactor: util functions take slices instead of heap values (#6547)Valentin Anger
2020-06-28fix(cli/doc): doc printer missing [] around tuple type (#6523)Valentin Anger
2020-06-12Revert "feat: add Deno.osName()" (#6261)Ryan Dahl
Deno.build.os provides the same functionality This reverts commit 6ccf9037a6b36c81ea0e6ac12d0e2dbd793f6114.
2020-06-11feat: add Deno.osName() (#5714)Rubin Bhandari
2020-06-09feat(doc): display all overloads in cli details view (#6186)uki00a
2020-06-03feat(doc): handle detail output for enum (#6078)uki00a
2020-06-01fix(doc): remove JSDoc comment truncation (#6031)Matt Dumler
2020-05-29refactor: TS compiler and module graph (#5817)Bartek Iwańczuk
This PR addresses many problems with module graph loading introduced in #5029, as well as many long standing issues. "ModuleGraphLoader" has been wired to "ModuleLoader" implemented on "State" - that means that dependency analysis and fetching is done before spinning up TS compiler worker. Basic dependency tracking for TS compilation has been implemented. Errors caused by import statements are now annotated with import location. Co-authored-by: Ryan Dahl <ry@tinyclouds.org>
2020-05-27fix(doc): handle comments at the top of the file (#5891)Matt Dumler
2020-05-26fix: parsing of JSX and TSX in SWC (#5870)Bartek Iwańczuk
2020-05-19fix(doc): crash on formatting type predicate (#5651)Ryan Dahl
2020-05-17Update to dprint 0.18.3 and the latest version of swc (#5509)David Sherret
2020-05-14Remove debug prints introduced in e18aaf49c (#5356)Valentin Anger
2020-05-06feat: deno doc handles default exports (#4873)Bartek Iwańczuk
2020-04-30fix(doc): better repr for object literal types (#4998)Bartek Iwańczuk
2020-04-27refactor: factor out AstParser from DocParser (#4923)Bartek Iwańczuk
2020-04-23upgrade: Rust 1.43.0 (#4871)Bartek Iwańczuk
2020-04-14fix(doc): Added extends field to interface (#4739)Luca Casonato
2020-04-14fix(doc): expose optionality in function params and class members (#4738)Luca Casonato
2020-04-09feat(cli/doc): Support doc for runtime built-ins (#4635)Nayeem Rahman
2020-04-08feat(doc): handle function params and type params (#4672)Bartek Iwańczuk
2020-04-07feat(doc): handle basic reexports (#4625)Bartek Iwańczuk
2020-04-03upgrade dprint to 0.9.10 (#4601)Bartek Iwańczuk
2020-04-03"deno doc" parses the "implements" clause of a class def (#4604)Ondřej Žára
2020-04-03`deno doc` parses super-class names (#4595)Ondřej Žára
Co-Authored-By: Luca Casonato <luca.casonato@antipy.com>
2020-04-02Added 'declare' handling to 'deno doc' (#4573)Luca Casonato
2020-03-29fix(doc): Safely deal with optional type (#4526)Luca Casonato
2020-03-28feat: Added colors to doc output (#4518)Luca Casonato
2020-03-28feat: Add "deno doc" subcommand (#4500)Bartek Iwańczuk