1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-26 16:09:27 -05:00
denoland-deno/cli/tests/testdata/doc
David Sherret a1d823e27d
feat(compile): support discovering modules for more dynamic arguments (#21381)
This PR causes Deno to include more files in the graph based on how a
template literal looks that's provided to a dynamic import:

```ts
const file = await import(`./dir/${expr}`);
```

In this case, it will search the `dir` directory and descendant
directories for any .js/jsx/etc modules and include them in the graph.

To opt out of this behaviour, move the template literal to a separate
line:

```ts
const specifier = `./dir/${expr}`
const file = await import(specifier);
```
2023-12-01 20:12:10 +00:00
..
module
060_deno_doc_displays_all_overloads_in_details_view.ts refactor: move out test files from root testdata directory into sub directories (#15949) 2022-09-19 10:32:21 -04:00
060_deno_doc_displays_all_overloads_in_details_view.ts.out refactor: update to deno_doc 0.71 (#21023) 2023-10-31 09:19:43 +05:30
deno_doc.ts refactor: move out test files from root testdata directory into sub directories (#15949) 2022-09-19 10:32:21 -04:00
deno_doc2.ts feat(doc): support multiple file entry (#21018) 2023-10-30 23:58:57 +01:00
deno_doc_builtin.out refactor: move out test files from root testdata directory into sub directories (#15949) 2022-09-19 10:32:21 -04:00
import_map.json
invalid_url.out
lint_success.out fix(doc): deno doc --lint mod.ts should output how many files checked (#21084) 2023-11-04 04:43:54 +00:00
lint_success.ts fix(doc): deno doc --lint mod.ts should output how many files checked (#21084) 2023-11-04 04:43:54 +00:00
lint_success_html.out feat(compile): support discovering modules for more dynamic arguments (#21381) 2023-12-01 20:12:10 +00:00
lint_success_json.out fix(doc): deno doc --lint mod.ts should output how many files checked (#21084) 2023-11-04 04:43:54 +00:00
referenced_private_types.out refactor: update to deno_doc 0.71 (#21023) 2023-10-31 09:19:43 +05:30
referenced_private_types.ts feat(doc): display non-exported types referenced in exported types (#20990) 2023-10-26 21:27:50 -04:00
referenced_private_types_fixed.out fix(doc): deno doc --lint mod.ts should output how many files checked (#21084) 2023-11-04 04:43:54 +00:00
referenced_private_types_fixed.ts feat: deno doc --lint (#21032) 2023-10-31 18:19:42 -04:00
referenced_private_types_lint.out fix: improve deno doc --lint error messages (#21156) 2023-11-10 18:40:39 +00:00
types_header.out refactor: update to deno_doc 0.71 (#21023) 2023-10-31 09:19:43 +05:30
types_header.ts
types_hint.out refactor: update to deno_doc 0.71 (#21023) 2023-10-31 09:19:43 +05:30
types_hint.ts
types_ref.js
types_ref.out refactor: update to deno_doc 0.71 (#21023) 2023-10-31 09:19:43 +05:30
use_import_map.js
use_import_map.out feat(doc): improve non-exported diagnostic (#21033) 2023-11-01 13:54:44 +01:00