mirror of
https://github.com/denoland/deno.git
synced 2024-11-26 16:09:27 -05:00
a1d823e27d
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); ``` |
||
---|---|---|
.. | ||
module | ||
060_deno_doc_displays_all_overloads_in_details_view.ts | ||
060_deno_doc_displays_all_overloads_in_details_view.ts.out | ||
deno_doc.ts | ||
deno_doc2.ts | ||
deno_doc_builtin.out | ||
import_map.json | ||
invalid_url.out | ||
lint_success.out | ||
lint_success.ts | ||
lint_success_html.out | ||
lint_success_json.out | ||
referenced_private_types.out | ||
referenced_private_types.ts | ||
referenced_private_types_fixed.out | ||
referenced_private_types_fixed.ts | ||
referenced_private_types_lint.out | ||
types_header.out | ||
types_header.ts | ||
types_hint.out | ||
types_hint.ts | ||
types_ref.js | ||
types_ref.out | ||
use_import_map.js | ||
use_import_map.out |