This website requires JavaScript.
Explore
Help
Sign in
foster
/
denoland-deno
Watch
1
Star
0
Fork
You've already forked denoland-deno
0
mirror of
https://github.com/denoland/deno.git
synced
2024-11-22 15:06:54 -05:00
Code
Issues
Packages
1
Wiki
Activity
e23fc6d88c
denoland-deno
/
tests
/
testdata
/
doc
/
lint_success_html.out
2 lines
29 B
Text
Raw
Normal View
History
Unescape
Escape
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 15:12:10 -05:00
Written 9 files to "./docs/"
Copy permalink